-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
114 lines (94 loc) · 1.69 KB
/
styles.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
111
112
113
114
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
font-family: 'Roboto', sans-serif;
color: #FFFFFF;
font-size: 18px;
font-weight: 400;
line-height: 21px;
background-color: #3B3F45;
}
h1 {
font-size: 24px;
line-height: 28px;
}
h2 {
font-weight: 400;
font-size: 18px;
line-height: 21px;
}
ul {
list-style: none;
}
.header {
background-color: #4A4F56;
}
.container {
width: 800px;
max-width: 100%;
margin: 0 auto;
padding: 0 20px;
}
.header-wrapper {
color: #FF8984;
text-align: center;
padding: 19px 0 12px;
}
.header-title {
margin-bottom: 4px;
}
.subtitle {
font-size: 16px;
line-height: 19px;
}
.list-wrapper {
padding: 20px 0 45px;
}
.todo-item {
background-color: #88839E;
position: relative;
border-bottom: 3px solid #88839E;
border-top: 3px solid #88839E;
transition: 0.6s;
}
.todo-item:nth-child(even) {
background-color: #7A7593;
border-color: #7A7593;
}
.todo-item:hover {
background-color: #625E77;
border-color: #FFFFFF;
}
.todo-item-label {
padding: 9px 12px 9px 47px;
cursor: pointer;
display: flex;
align-items: center;
}
.checkbox {
width: 19px;
height: 19px;
position: absolute;
left: 12px;
top: 50%;
transform: translateY(-50%);
cursor: pointer;
}
.checkbox:checked + .todo-item-label {
text-decoration: line-through;
}
.note {
font-size: 11px;
line-height: 13px;
margin-left: 6px;
}
.caption {
background-color: #4A4F56;
color: #FF8984;
padding: 12px;
text-align: center;
}