-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyles.css
More file actions
129 lines (111 loc) · 2.08 KB
/
styles.css
File metadata and controls
129 lines (111 loc) · 2.08 KB
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
121
122
123
124
125
126
127
128
129
/* css styles */
.highlight {
background-color: #fffeca;
}
#relevant-roles li:after {
content: ' |';
color: #bbb;
}
#relevant-roles .list-inline-item:not(:last-child) {
margin-right: 0;
}
#relevant-roles li:last-child:after {
content: '';
}
#relevant-roles {
border-left-color: #bbb;
}
.btn-outline-custom {
color: #20558a;
border-color: #20558a;
}
.btn-outline-custom:hover {
color: white;
background-color: #20558a;
}
/* Hide left and right footers in favor of a single centered footer */
.nav-footer-left, .nav-footer-right {
display: none;
}
/* glightbox customization */
.figure {
text-align: center;
}
.gslide-description {
background-color: black !important;
color: white;
text-align: center;
}
/* json viewer css */
.json_view {
font-family: monospace;
font-size: 16px;
}
.json_view > .json_view__item {
display: block;
}
.json_view__item {
display: none;
margin-top: 10px;
padding-left: 20px;
user-select: none;
}
.json_view__item--collapsible {
cursor: pointer;
overflow: hidden;
position: relative;
}
.json_view__item--collapsible::before {
content: "+";
position: absolute;
left: 5px;
}
.json_view__item--collapsible::after {
background-color: lightgrey;
content: "";
height: 100%;
left: 9px;
position: absolute;
top: 26px;
width: 1px;
}
.json_view__item--collapsible:hover > .json_view__key, .json_view__item--collapsible:hover > .json_view__value {
text-decoration: underline;
}
.json_view__toggle {
display: none;
}
.json_view__toggle:checked ~ .json_view__item {
display: block;
}
.json_view__key {
color: darkblue;
display: inline;
}
.json_view__key::after {
content: ": ";
}
.json_view__value {
display: inline;
}
.json_view__value--string {
color: green;
}
.json_view__value--number {
color: blue;
}
.json_view__value--boolean {
color: #e50000;
}
.json_view__value--type-object, .json_view__value--type-array {
color: #767676;
}
/* Learning objectives/key points */
#learning-objectives .answer {
display: none;
}
#key-points .answer {
margin-top: 0.5em;
margin-bottom: 1em;
color: green;
}