-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylelist.css
110 lines (91 loc) · 1.51 KB
/
stylelist.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
ul {
position: relative;
left: 35%;
list-style-type: none;
}
ul li {
cursor: pointer;
padding: 12px 8px 12px 40px;
background: pink;
font-size: 18px;
transition: 0.2s;
width: 20%;
}
ul li:nth-child(odd)
{
background: #f9f9f9;
width: 20%;
}
ul li:hover {
background: #ddd;
}
ul li.checked {
background: #888;
color: #fff;
text-decoration: line-through;
}
.header {
background-color: #f44336;
padding: 30px 40px;
color: white;
text-align: center;
}
.header:after {
content: "";
display: flex;
clear: both;
}
input {
margin: 0;
border: none;
border-radius: 0;
width: 15%;
padding: 10px;
text-align: center;
font-size: 16px;
}
.addBtn {
padding: 10px;
width: 5%;
background: #d9d9d9;
color: #555;
text-align: center;
font-size: 16px;
cursor: pointer;
border-radius: 0;
text-align: center;
}
.addBtn:hover {
background-color: #bbb;
}
p {
font-size: 18px;
color: #555;
front-style: italic;
}
.filter-link {
cursor: pointer;
font-weight: normal;
position: relative;
left: 40%;
background: pink;
transition: 0.2s;
}
.filter-link.active {
font-weight: bold;
position: relative;
left: 40%;
background: white;
transition: 0.2s;
}
.clearBtn {
padding: 10px;
width: 5%;
background: #d9d9d9;
color: #555;
text-align: center;
font-size: 16px;
cursor: pointer;
border-radius: 0;
text-align: center;
}