-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
120 lines (96 loc) · 1.72 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
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
120
#root {
display: flex;
flex-direction: column;
align-items: center;
}
tile {
display: flex;
justify-content: center;
align-items: center;
font-size: 30px;
width: 30px;
height: 30px;
margin: 1px;
}
row {
display: flex;
}
dashboard {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 50px;
}
buttons {
display: block;
margin-bottom: 50px;
}
button {
display: inline-block;
padding: 15px 25px;
font-size: 24px;
cursor: pointer;
text-align: center;
text-decoration: none;
outline: none;
color: #fff;
background-color: #4CAF50;
border: none;
border-radius: 15px;
box-shadow: 0 9px #999;
margin: 10px 10px;
}
button:hover {background-color: #3e8e41}
button:active {
background-color: #3e8e41;
box-shadow: 0 5px #666;
transform: translateY(4px);
}
radio-group {
display: block;
}
.dot {
background-color: lightgray;
}
.hash {
background-color: black;
}
.a {
background-color: red;
}
.b {
background-color: gold;
}
.w {
background-color: blue;
}
.m {
background-color: gray;
}
.f {
background-color: darkgreen;
}
.g {
background-color: lightgreen;
}
.r {
background-color: sandybrown;
}
.dot.closed {
background-color: lightblue;
}
.dot.open {
background-color: lightcyan;
}
.w.closed:before, .m.closed:before, .f.closed:before, .g.closed:before, .r.closed:before {
content: "◦"
}
.w.open:before, .m.open:before, .f.open:before, .g.open:before, .r.open:before {
content: "-"
}
.dot.path {
background-color: green;
}
.w.path:before, .m.path:before, .f.path:before, .g.path:before, .r.path:before {
content: "•" !important;
}