-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
73 lines (62 loc) · 1.06 KB
/
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
61
62
63
64
65
66
67
68
69
70
71
72
73
.bgImage {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
z-index: -1;
background: url("https://img3.goodfon.com/wallpaper/nbig/9/b0/priroda-rasteniya-dorozhka-list.jpg");
background-size: cover;
}
.tasks {
height: 65vh;
overflow-y: auto;
}
.taskList {
list-style: none;
padding: 0 15px;
}
.taskCheckbox {
height: 100%;
width: 20px;
float: left;
}
.task {
margin-right: 0;
}
.taskTitle {
font-size: 1.1rem;
border: 0;
outline: none;
background: transparent;
width: 80%;
letter-spacing: 1px;
}
.taskItems {
width: 100%;
padding: 10px 10px;
border-bottom: 1px solid grey;
background-color: #e0e0e0;
}
.buttons {
float: right;
}
.taskBtn {
font-size: 0.8rem;
padding: 0.2rem 0.5rem;
}
.completed {
color: #ffff;
background-color: #5cb85c;
text-decoration: line-through;
transition: 0.4s ease-out;
}
.lineThrough {
text-decoration: line-through;
color: #ffff;
}
@media (max-width: 600px) {
.taskTitle {
width: 65%;
}
}