-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
76 lines (68 loc) · 1.34 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
body{
margin: 0;
display: flex;
justify-content: center;
background-color: black;
}
.form{
position: absolute;
top: 30%;
box-shadow: 0 4px 8px rgba(0,0,0,.3);
width: 400px;
background-color: grey;
border-radius: 10px;
}
.input{
width: 100%;
box-sizing: border-box;
padding: 20px;
border-radius: 10px 10px 0 0;
border: none;
font-size: 20px;
font-family: cursive;
}
.input::placeholder{
color: black;
}
.list{
padding: 0;
margin: 0;
}
.list li{
list-style-type: none;
padding: 20px;
font-family: cursive;
border-top: dotted;
border-color: darkgray;
position: relative;
}
.list li .fa-trash{
color: red;
position: absolute;
right: 20px;
top: 50%;
transform: translateY(-50%);
cursor: pointer;
}
.list li .fa-check-square{
color: green;
position: absolute;
right: 40px;
top: 50%;
transform: translateY(-50%);
cursor: pointer;
}
.list li.checked {
color: darkgray;
text-decoration: line-through;
}
.list li.checked .fa-check-square{
color: darkgray;
}
h1{
text-align: center;
text-decoration: wavy;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
color: bisque;
font-size: 100px;
}