-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathstyle.css
More file actions
68 lines (58 loc) · 1 KB
/
style.css
File metadata and controls
68 lines (58 loc) · 1 KB
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
* {
box-sizing: border-box;
}
body {
background-color: rgb(221, 245, 177);
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
flex-direction: column;
}
h1 {
color: rgb(161, 42, 216);
font-size: 200px;
letter-spacing: 5px;
opacity: 0.6;
margin-top: 5rem;
}
form {
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.39);
max-width: 100%;
width: 400px;
margin-top: 0.5rem;
}
.input {
border: none;
color: black;
font-size: 2rem;
padding: 1rem 2rem;
width: 100%;
display: block;
}
input::placeholder {
color:grey;
}
input:focus {
outline-color: rgb(0, 167, 0);
}
.todos {
background-color: white;
padding: 0;
margin: 0;
list-style-type: none;
}
.todos li {
border-top: 2px solid #e5e5e5;
cursor: pointer;
font-size: 1.5rem;
padding: 1rem 2rem;
}
.todos li.completed {
color:grey;
text-decoration: line-through;
}
small {
margin-top: 3rem;
text-align: center;
}