-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom.css
192 lines (158 loc) · 3.67 KB
/
custom.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
/*#008cc3 mirai blue*/
/* bg img https://github.com/miraisolutions/miraisolutions.github.io/blob/master/assets/images/illu-header-data.png */
/* Font */
body, h1, h2, h3 {
/*
Note: the Mirai website (Frutiger) is not availaible
We specify Arial first, which makes the displayed font on Firefox closer to
what Chrome displays
(Chrome was the brower used in preparation for and thuring the workshop)
*/
font-family: Arial,Helvetica,sans-serif !important;
}
body {
/*
Firefox seems to have a wider default for this font, so we explicitly set it
to 1.16, which is what Chrome seems to use as default
(Chrome was the brower used in preparation for and during the workshop)
https://stackoverflow.com/questions/31386307/css-line-height-not-the-same-in-firefox-and-chrome
*/
line-height: 1.16;
}
h1, h2, h3 {
color: #008cc3 !important;
}
.remark-slide-content>h2 {
margin-top: 15px;
}
/*links*/
a {
color: #008cc3 !important;
}
/* Footer */
div.my-footer {
background-color: #F8F8F8; /* light gray */
position: absolute;
bottom: 0px;
left: 0px;
height: 30px;
width: 100%;
background-repeat: no-repeat;
background-image: url("./img/mirai-solutions-logo-flyer.png");
background-size: 80px; /*fixed width proportional heigth */
background-position: 98%;
}
div.my-footer span {
font-size: 10pt;
color: #808080; /* gray */
position: absolute;
left: 15px;
bottom: 7px;
}
.remark-slide-number {
font-size: 10pt;
bottom: 7px;
right: 50%;
color: #808080; /* gray */
opacity: 1; /* default: 0.5 */
}
/*Mirai styled inverse slide*/
.inverse {
background-color: #008cc3;
}
/*Mirai styled first slide*/
.title-slide {
background-image: url('./img/illu-header-data.png');
background-size: cover;
}
.title-slide h1, .title-slide h2, .title-slide h3 {
color: #f3f3f3 !important; /*xaringan default*/
}
.title-slide a {
color: #f3f3f3 !important; /*xaringan default*/
text-decoration: underline;
}}
.title-slide .remark-slide-number {
display: none;
}
.inverse h1, .inverse h2, .inverse h3 {
color: #f3f3f3 !important; /*xaringan default*/
}
.inverse .remark-slide-number {
display: none;
}
.inverse div.my-footer span {display:none;}
.inverse div.my-footer {display:none;}
/*Mirai styled slide with logo top-right - new class */
.logo-slide {
background-image: url('./img/mirai-solutions-logo-flyer.png');
background-size: 300px; /*fixed width proportional heigth */
background-position: 85% 5%
}
/*Mirai styled slide with smaller logo top-right - new class */
.logo-slide-small {
background-image: url('./img/mirai-solutions-logo-flyer.png');
background-size: 150px; /*fixed width proportional heigth */
background-position: 90% 5%
}
/*big bullets */
ul {
list-style-type: disc;
margin-left:30px !important;
padding: 0px !important;
}
/*More spaces between bullets */
ol li, ul li {
margin-bottom: 0.5em !important;
}
/* Reduce fig caption size */
p.caption {
font-size: 0.5em;
}
/*Center text */
.pull-middle {
text-align: center;
}
/*reduce font size*/
.fontsize80 {
font-size: 0.8em;
}
/* Inverse Two-column layout */
.inverse-left-column {
width: 80%;
float: left;
}
.inverse-right-column {
width: 20%;
float: right;
}
.right-column-75 {
width: 75%;
float: right;
}
.left-column-50 {
width: 50%;
float: left;
}
.right-column-50 {
width: 50%;
float: right;
}
.no-first-top-margin :first-child {
margin-top: 0;
}
/* Inverse 60/40 Two-column layout */
.inverse-60-40-left-column {
width: 60%;
float: left;
}
.inverse-60-40-right-column {
width: 40%;
float: right;
}
.img-covidr-website {
max-width: 100%;
height: 550px;
position: absolute;
top: 100px;
}