-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
263 lines (262 loc) · 5.91 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
/* fix:
toc should scroll to top (and collapse) on reload
collapsable hierarchical toc
*/
/*
style.css
Author: David J. Birnbaum
Email: [email protected]
Original version: 2007-08-02
Last revised: 2011-04-08
Functionality: css mimics html frames
Partially based on:
http://ella.slis.indiana.edu/~jawalsh/share/css/tei2html.css
John Walsh, [email protected]
Accessed: 2007-08-02
*/
dfn {
/* opera and safari don't style dfn at all;
other browsers may use italic instead of true oblique
(is this font-specific?) */
font-style: oblique;
}
html {
background-color: #f4eee2;
color: black;
}
body {
font-family: cambria, "palatino linotype", times, serif;
/* georgia is missing the acute accent, so IErenders a box */
line-height: 1.25em;
background-color: #f4eee2 !important;
color: black;
/* padding-left: 5px; */
counter-reset: level1 0;
}
section.main-content {
max-width: 80rem !important;
}
section > ol > li > ol {
display: none;
}
button {
/* buttons for entire schedule */
background: linear-gradient(to right, teal, seagreen);
border: none;
border-radius: 15px;
color: #f4eee2;
width: 100px;
font-size: 80%; /* shrink font and strip padding to reduce button bloat */
padding: 0; /*background-color: lightcyan;*/
}
li > button {
/* buttons for individual sessions */
width: 75px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Verdana, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", "Verdana Ref", sans-serif;
color: /*#351408*/ seagreen;
line-height: 1.4em;
page-break-after: avoid;
position: relative;
/* otherwise IE cuts off top of H1 with increased line-height */
}
h3:before {
counter-increment: level1;
content: counter(level1, upper-roman) ". ";
}
p {
line-height: 1.25em;
}
pre {
font-family: "Andale Mono", "Courier New", monospace !important;
font-size: 95% !important;
line-height: 1.1em !important;
border: 1px dashed #990000 !important;
/* background-color : aqua; */
background-color: #D3C8B4 !important;
color: black !important;
margin: 1em !important;
padding: 1em !important;
}
.pre-highlight {
font-style: italic !important;
font-weight: bold !important;
color: #D7301F !important;
}
pre.bad_code {
background-color: #FFC0CB !important
}
.pre-colored { /* color non-pre stuff like pre */
border: 1px dashed #990000 !important;
/* background-color : aqua; */
background-color: #D3C8B4 !important;
color: black !important;
margin: 1em !important;
padding: 1em !important;
}
code {
font-family: "Andale Mono", "Courier New", monospace !important;
/*color : #870429;*/
color: #D7301F !important;
background-color: rgba(0, 0, 0, 0.1) !important;
font-weight: bold !important;
}
sub,
sup {
line-height: 0em;
}
section > ol {
list-style-type: upper-alpha;
}
section > ol > li > ol {
list-style-type: decimal;
}
section > ol > li > ol > li > ol {
list-style-type: lower-alpha;
}
section > ol > li > ol > li > ol > li > ol {
list-style-type: lower-roman;
}
section > ol > li > ol > li > ol > li > ol > li > ol {
list-style-type: lower-greek;
}
a {
text-decoration: none; /* don't underline links */
}
a:link:hover,
a:visited:hover {
text-decoration: underline;
}
li > p {
/* paragraphs are okay within list items, but:
need to suppress usual vertical spacing to avoid spacing between list items
need to tab non-initial paragraphs to make up for lack of vertical spacing */
margin: 0px;
padding: 0px;
}
li > p + p {
text-indent: 1.5em;
}
table {
border-collapse: collapse;
}
table,
th,
td {
border-color: gray;
border-style: solid;
border-width: 1px;
padding: 5px;
}
/* floating divs for pseudo-frames*/
#header {
padding: 0px 0px 0px; /* top, right-left, bottom */
overflow: visible;
height: 200px;
white-space: nowrap;
}
.frame {
/* for toc and entries frames
must specify top and bottom in order for scroll bars to work */
position: absolute;
top: 200px;
bottom: 0px;
overflow: auto;
margin: 0px 5px 10px; /* top, right-left, bottom */
}
#toc {
left: 5px;
width: 185px;
font-size: smaller;
line-height: 1.2em;
}
#entries {
left: 190px;
padding-left: 10px;
border-left-style: solid;
border-left-width: 1px;
}
#entries h2 {
margin-top: 14px;
}
p.boilerplate span {
text-indent: -1em;
margin-left: 1em;
display: block;
font-size: smaller;
line-height: 1.2em;
}
.logo {
color: #A00000;
/*font-style : normal;*/
}
dt {
font-size: larger;
line-height: 1.2em;
margin-bottom: .2em;
margin-top: .7em;
}
dt > span:hover {
text-decoration: underline;
cursor: pointer;
}
.arrow {
color: teal;
}
dl.normal > dt {
font-size: inherit;
}
dl.normal > dd {
font-size: inherit;
}
dd > span {
display: block;
text-indent: -1em;
margin-left: 1em;
}
.offline {
opacity: 0.4;
}
q {
quotes: '“' '”' '‘' '’';
}
.note {
font-size: smaller;
}
li[img] {
line-height: 1.25em !important;
}
img.icon {
vertical-align: bottom;
height: 1.25em;
position: relative;
top: 2px; /*right: -2px;*/
padding-left: .3em;
padding-right: .3em;
padding-bottom: .2em;
}
span.answer {
display: none;
}
div.answer {
display: none;
font-family: "Andale Mono", "Courier New", monospace;
color: #D7301F;
font-weight: bold;
}
span.buttons {
display: inline-block;
white-space: nowrap;
}
section[title = "mainPage"] > p {
text-align: center !important;
}
footer {
text-align: center;
}