forked from tochev/interlude
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
70 lines (59 loc) · 1.12 KB
/
styles.css
File metadata and controls
70 lines (59 loc) · 1.12 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
body {
width: 100%;
height: 100%;
overflow: hidden;
/* background-color: #06172A; */ /* BigBlueButton background */
}
body,
.reveal,
.reveal h1,
.reveal h2,
.reveal h3,
.reveal h4,
.reveal h5,
.reveal h6 {
font-family: "Sofia Sans", tahoma, verdana, arial, sans-serif;
font-weight: bold;
/* -webkit-text-stroke: 0.01em black; */ /* This breaks rendering on modern browsersA */
}
.reveal h2 {
text-transform: none;
}
#background_video {
position: absolute;
top: 0;
left: 0;
z-index: -10000;
opacity: 0.4;
}
.reveal section img {
border: none;
Background: none;
box-shadow: none;
}
tr.past_event {
color: #AAAAAA;
}
tr.next_event {
color: #FFFF00;
}
tr.future_event {
color: #EEEEEE;
}
tr td:last-child, tr th:last-child {
text-align: right;
}
/* Force widths, so it overflows correctly with multiple lecturers or long titles */
tr td:nth-child(1) {
width: 5%;
}
tr td:nth-child(2) {
width: 65%;
}
tr td:nth-child(3) {
width: 30%;
}
/* wall of text (e.g. biography/abstract), looks terrible when centered */
.wall {
text-align: justify;
}