-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
60 lines (52 loc) · 891 Bytes
/
index.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
* {
box-sizing: border-box;
}
body {
margin: 0;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
background: lightgray;
font-family: sans-serif;
}
main {
margin-top: 20px;
min-width: 50vw;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background: white;
padding: 20px;
box-shadow: 0px 0px 10px gray;
}
input {
border: none;
border-bottom: 1px solid gray;
font-size: 18px;
}
ul {
font-size: 24px;
width: 100%;
}
li {
cursor: pointer;
}
.checked {
color: gray;
text-decoration: line-through;
}
.hide {
visibility: hidden;
}
button {
border: none;
border-radius: 10px;
padding: 5px 15px;
font-weight: bold;
background: teal;
color: white;
margin-left: 20px;
vertical-align: middle;
}