-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
71 lines (61 loc) · 1.21 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
body{
background-color: #99cc00;
font-family: "Lucida Console", Courier, monospace;
}
input{
font-family: "Lucida Console", Courier, monospace;
color: #263300;
}
button{
font-family: "Lucida Console", Courier, monospace;
color: #263300;
;
}
#app{
background-color: #f2ffcc;
color: #263300;
padding: 1rem;
}
#app h1{
color: #263300;
}
#app ul li{
color: #263300;
padding: 1rem;
}
#app input{
background-color: #f9ffe6;
color: #263300;
}
#app input[type=checkbox]:before {
content: "";
display: block;
width: inherit;
height: inherit;
border: 2px solid #555555;
border-radius: 2px;
background-color: #f9ffe6;
position: absolute;
top: inherit;
left: inherit;
}
#app input[type=checkbox]:checked:after{
background-color: #99cc00;
color: #99cc00;
content: "";
display: block;
border: solid #263300;
border-top: solid #99cc00;
border-left: solid #99cc00;
border-width: 2px;
width: inherit;
height: inherit;
border-radius: 3px;
position: absolute;
top: inherit;
left: inherit;
}
#app button{
background-color: #f9ffe6;
color: #263300;
}