-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
82 lines (63 loc) · 1.17 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
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
font-family: 'Ubuntu', sans-serif;
}
main {
background-color: #6a89cc;
height: 100vh;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.box {
width: 700px;
min-height: 500px;
background-color: white;
border-radius: 5px;
padding: 10px;
}
#item {
width: 100%;
padding: 5px;
}
#item {
padding: 10px;
font-size: 15px;
font-weight: bold;
display: block;
border: none;
outline:none;
box-shadow: 0px 0px 2px gray;
}
#to-do-box {
list-style: none;
margin-top: 10px;
}
#to-do-box li {
padding: 10px;
color: white;
background-color:#576574;
position: relative;
margin-top: 5px;
}
#to-do-box li i {
position: absolute;
right: 10px;
top: 10px;
}
#tick
{
text-decoration: line-through;
margin-left: 15px;
}
.completed {
text-decoration: line-through;
}
.done {
text-decoration: line-through;
color: black;
background-color: yellow !important;
}