-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy paththeme.css
More file actions
66 lines (54 loc) · 730 Bytes
/
theme.css
File metadata and controls
66 lines (54 loc) · 730 Bytes
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
.nav>li>a {
padding-top: 3px;
padding-bottom: 3px;
padding-left: 5px;
padding-right: 5px;
}
.nav {
padding-left: 15px;
}
#menudiv {
margin: 0px;
}
@media (min-width: 768px) {
#menudiv {
max-height: 100vh;
}
#contentdiv {
max-height: 100vh;
}
}
@media (max-width: 768px) {
#menudiv {
max-height: 50vh;
}
#contentdiv {
max-height: 50vh;
}
}
h3 {
margin: 0px;
font-size: 20px;
}
#menudiv {
padding: 0px;
overflow-y: auto;
}
#contentdiv {
overflow-y: auto;
}
body {
background: rgb(200,200,200);
}
#center {
max-width: 90em;
background: rgb(255,255,255);
margin-left: auto;
margin-right: auto;
}
a.closed>.caret {
transform: rotate(-90deg);
}
a.opened>.caret {
transform: rotate(0deg);
}