-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodo.css
119 lines (102 loc) · 1.75 KB
/
todo.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
115
116
117
118
119
head, body, h1, ul, li, section, button, nav, h2, h3, h4 {
margin: 0;
padding: 0;
border: none;
font-family: 'Lumos';
box-sizing: border-box;
text-decoration: none;
background: transparent;
list-style: none;
}
@font-face {
font-family: 'Lumos';
font-style: normal;
font-weight: normal;
src: url('./fonts/WitchesMagic.ttf') format('trueType');
}
body {
background: #dbdbdb;
}
nav {
font-family: "Lumos";
background: #941B08;
padding: 10px 0px;
text-align: center;
box-shadow: 1px 6px 9px -4px rgba(0, 0, 0, 0.22);
color: whitesmoke;
font-weight: bold;
}
.explanation {
margin-top: 20px;
text-align: center;
}
h4 {
margin-top: 10px;
font-size: 14px;
}
.lists {
margin-top: 15px;
display: flex;
justify-content: center;
color: whitesmoke;
}
.complete, .incomplete {
background: #ae1d07;
padding: 20px;
border-radius: 4px;
width: 200px;
min-height: 150px;
}
.lists section:last-child {
margin-left: 30px;
}
.lists h2 {
text-decoration: underline;
text-align: center;
}
li {
border-radius: 4px;
background: #ffc500;
padding: 10px;
font-size: 26px;
margin-top: 5px;
text-align: center;
position:relative;
color: black;
}
li:hover {
cursor: pointer;
background: #f4bd01;
}
.create-todo {
display: flex;
justify-content: center;
margin-top: 10px;
color: black;
}
.delete {
position: absolute;
top: 0px;
right: 0px;
font-size: 6px;
z-index: 1px;
background: transparent;
}
.delete:hover {
cursor: pointer;
}
button {
border-radius: 4px;
background: #ffc500;
padding: 7px;
padding-bottom: 2px;
color: black;
font-weight: bold;
}
.create-todo button:hover {
background: #f4bd01;
}
button:hover {
cursor: pointer;
background: rgba(214, 189, 0, 1);
}