-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
83 lines (67 loc) · 1.13 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
/* https://aykevl.nl/2014/09/fix-jumping-scrollbar */
@media screen and (min-width: 55rem) {
html {
margin-left: calc(100vw - 100%);
margin-right: 0;
}
}
body {
max-width: 50rem;
margin: 0 auto;
}
/* small screen */
body:not(.show-nav) #tree {
display: none;
}
body.show-nav .toggle-nav {
font-weight: bold;
}
@media (min-width: 40rem) { /* big screen */
.toggle-nav {
display: none;
}
body:not(.show-nav) #tree {
display: block;
}
#tree {
max-width: calc(14rem - 50px);
float: left;
}
#main {
margin-left: 14rem;
}
}
.nav-item .nav-item .nav-link {
padding-left: 2rem;
}
.nav-item .nav-item .nav-item .nav-link {
padding-left: 3rem;
}
.subtitle {
font-style: italic;
}
.identifier {
font-family: monospace;
}
.alert.warning-test {
clear: right;
}
.attribute.name {
margin-top: 1.5rem;
font-size: 1.3rem;
}
#searchresults {
/* Sorry about this... It is required to correctly position the search box
* when using a d-none button to toggle the dropdown. */
top: initial !important;
transform: initial !important;
}
#templates {
display: none;
}
h1 {
margin: 1rem 0;
}
.items {
margin-left: 1.5rem;
}