-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
52 lines (45 loc) · 773 Bytes
/
style.css
File metadata and controls
52 lines (45 loc) · 773 Bytes
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
* {
margin: 0;
padding: 0;
font-family: sans-serif;
color: black;
}
li {
list-style: none;
}
html {
box-sizing: border-box;
background: url('tiraspol_centr.jpg') center no-repeat;
background-size: cover;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
.task-list {
background: rgba(255, 255, 255, 0.95);
box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
padding: 5px;
max-height: 150px;
overflow: scroll;
}
li:checked {
text-decoration: line-through;
}
li, label {
display: flex;
align-items: center;
justify-content: center;
}
.delete-task-btn {
background: none;
border: none;
color: red;
border-radius: 5px;
width: 15px;
}
.task-item {
display: flex;
justify-content: space-between;
}