-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
129 lines (114 loc) · 2.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
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
@import url(https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz);
@import url(https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic);
@import url(https://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700,400italic);
body { font-family: 'Droid Serif'; }
h1, h2, h3 {
color: rgb(69,88,115);
font-family: 'Yanone Kaffeesatz';
font-weight: normal;
}
.remark-code, .remark-inline-code {
font-family: 'Ubuntu Mono';
}
/* VESTEC blue = rgb(69,88,115) */
h1 {
position: relative;
z-index: 10;
}
.remark-slide-number {
color: rgb(69,88,115);
opacity: 1.0;
}
.remark-code {
font-size: 16px;
}
.remark-slide-content {
padding: 1em 2em 1em 2em;
}
/* Fix the footer bar in position */
div.footer {
position: fixed;
bottom: 0px;
left: 0px;
height: 60px;
width: 100%;
text-align: left;
}
div.footer:before {
content: "";
display: inline-block;
height: 100%;
vertical-align: middle;
}
div.footer img {
vertical-align: middle;
max-height: 60px;
padding-left: 20px;
}
div.footer p {
position: relative;
left: 20px;
bottom: 8px;
font-size: smaller;
}
/* Make title box VESTEC blue */
div.titlebox {
background-color: rgb(69,88,115);
color: white;
padding: 1em 0;
}
/* And the text in it white */
div.titlebox h1, h2, h3 {
color: white;
}
div.titlebox a {
color: white;
}
/* Fix footnotes box to just above foot box */
div.footnotes {
position: fixed;
bottom: 40px;
font-size: smaller;
}
/* Enable two column layout */
.columns {
display: flex;
}
.col2 {
width: 50%;
padding: 0 1%;
box-sizing: border-box;
}
.col3 {
width: 33%;
padding: 0 1%;
box-sizing: border-box;
}
.col4 {
width: 25%;
padding: 0 1%;
box-sizing: border-box;
}
@page {
size: 908px 681px;
margin: 0;
}
@media print {
.remark-slide-scaler {
width: 100% !important;
height: 100% !important;
transform: scale(1) !important;
top: 0 !important;
left: 0 !important;
}
}
table.authors {
table-layout: fixed;
width: 100%;
}
table.authors td {
width: 25%;
}
table.authors img {
width: 80%;
}