-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
87 lines (74 loc) · 1.12 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
body {
background: #eee;
color: #444;
font-family: 'Helvetica', arial, sans-serif;
padding: 8rem 0 6rem 0;
}
.container {
background: #fff;
max-width: 600px;
width: 100%;
display: table;
margin: 0 auto;
margin-top: 40px;
border: 1px solid #cfcbcc;
}
input {
border: none;
display: block;
width: 98.4%;
line-height: 1.5;
padding: 8px 0 8px 10px;
border-bottom: 1px solid #cfcbcc;
outline: 0;
}
h1,
h2,
p {
text-align: center;
margin-bottom: 0px;
line-height: 1;
}
h2 {
color: gray;
}
ul {
list-style: none;
margin: 0;
padding: 0;
}
ul li {
color: #899098;
font-weight: 400;
border-bottom: 1px solid #cfcbcc;
line-height: 1.5;
padding: 8px 0;
}
ul li:before {
content: "\25A1";
padding: 10px 10px;
font-size: 20px;
}
ul li:hover {
text-decoration: line-through;
cursor: pointer;
}
ul li:last-child {
border-bottom: none;
}
.checked {
color: green;
}
.checked:before {
content: "\2713";
padding: 10px 10px;
font-size: 20px;
}
.checked:hover {
text-decoration: none;
}
.checked:hover:after {
content: "(remove)";
color: tomato;
text-align: right;
}