-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
72 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
body {
background-color: lightgray;
}
#annc {
display: block;
width: 50%;
height: 400px;
}
kbd {
background-color: whitesmoke;
border-color: rgb(183, 183, 183);
border-style: solid;
border-width: 1px;
}
.submenu {
padding-left: 20px;
display: none;
}
/* tree stuffs */
#options ul {
list-style-type: none;
margin: 0;
padding: 0;
user-select: none;
}
.caret {
cursor: pointer;
user-select: none;
font-weight: bold;
}
.caret::after {
content: "\25B6";
color: black;
display: inline-block;
margin-left: 6px;
font-size: 0.8em;
transform: rotate(90deg);
}
.caret-down::after {
transform: unset;
}
.nested {
display: block;
}
.active {
display: none;
}
/* option sections stuffs */
.options-section {
border-left: 4px solid;
border-radius: 4px;
}
.options-section li {
padding-left: 10px;
display: block;
margin-top: 1em;
margin-bottom: 1em;
margin-left: 0;
margin-right: 0;
}
.options-section::first-line { /* bold first line of options section */
font-weight: bold;
}
.toggleable{cursor: pointer;}
/* define colors for options sections */
#general-options {border-color: slateblue;}
#segments {border-color: palevioletred;}
#customization {border-color: teal;}