-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
70 lines (60 loc) · 1.18 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap");
* {
box-sizing: border-box;
}
body {
background-color: #f5f5f5;
background-image: linear-gradient(90deg, #00DBDE 0%, #FC00FF 100%);
color: #444;
display: flex;
align-items: center;
flex-direction: column;
font-family: "Poppins", sans-serif;
margin: 0;
min-height: 100vh;
}
h1 {
color: white;
font-size: 10rem;
text-align: center;
opacity: 0.4;
}
form {
box-shadow: 0 4px 10px rgba(214, 206, 206, 0.097);
max-width: 100%;
width: 400px;
border-radius: 40px;
border: none;
}
.input {
border: none;
color: rgb(68, 68, 68);
font-size: 2rem;
padding: 1rem 2rem;
display: block;
width: 100%;
}
.input::placeholder {
color: #d5d5d5;
}
.todo {
background-color: #fff;
padding: 0;
margin: 0;
list-style-type: none;
}
.todo li {
border-top: 1px solid #e5e5e5;
cursor: pointer;
font-size: 1.5rem;
padding: 1rem 2rem;
}
.todo li.completed {
color: #b6b6b6;
text-decoration: line-through;
}
small {
color: #ece5e5b3;
margin-top: 3rem;
text-align: center;
}