-
Notifications
You must be signed in to change notification settings - Fork 2
/
presentation.css
180 lines (146 loc) · 3.61 KB
/
presentation.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
/*********************************************
* Set ROOT Information
*********************************************/
/* set UU primary color pallet*/
:root {
--color-1: #FFCD00 ;
--color-2: #000000 ;
--color-3: #C00A35 ;
--color-4: #000000 ;
}
/*********************************************
* Set FONT Information
*********************************************/
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&lang=en');
@import url('https://fonts.googleapis.com/css?family=Merriweather:italic&lang=en');
@import url('https://fonts.googleapis.com/css?family=Lora:ital,wght@0,400..700;1,400..700&lang=en');
.reveal h2,
.reveal h3,
.reveal h4,
.reveal h5,
.reveal h6 {
font-family: 'Open Sans', sans-serif;
line-height: 1.5;
}
.reveal h1 {
font-family: 'Merriweather', serif;
font-weight: 500;
line-height: 1;
margin-top: 20px;
margin-bottom: 10px;
margin-right: 0px;
margin-left: 0px;
}
body.rise-enabled div.inner_cell>div.text_cell_render.rendered_html,
.reveal body{
font-family: 'Open Sans', sans-serif;
font-weight: 300;
font-size: 80%;
}
body.rise-enabled sup, sub {
vertical-align: baseline;
position: relative;
top: -0.2em;
font-size: 60%;
}
body.rise-enabled sub {
top: 0.2em;
}
/*********************************************
* Set COLUMN lay-out
*********************************************/
.column {
float: left;
width: 50%;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
/*********************************************
* Set IMAGE settings
*********************************************/
.reveal section img {
border: none;
background: none;
}
body.rise-enabled #logo {
width: 25%
}
#logo {
width: 15%
}
body.rise-enabled #col_img{
object-fit: cover;
width: 700px;
height: 700px;
}
#col_img{
object-fit: cover;
width: 350px;
height: 350px;
}
body.rise-enabled #undraw_col_img{
width: auto;
height: 500px;
}
#undraw_col_img{
width: auto;
height: 350px;
}
body.rise-enabled #full_screen_crop{
object-fit: cover;
width: 100%;
height: 700px;
}
#full_screen_crop{
object-fit: cover;
width: 100%;
height: 350px;
}
body.rise-enabled #full_screen{
width: 100%;
height: 700px;
}
#full_screen{
width: 100%;
height: 350px;
}
/*********************************************
* Set HEADER and FOOTER information
*********************************************/
body.rise-enabled .header{
top: 5%;
width: 100%;
}
#image_caption{
font-size: small;
}
body.rise-enabled .footer{
font-size: 60%;
bottom: 25px;
position: fixed;
padding-bottom: 10px;
color: grey;
}
/*********************************************
* NAVIGATION CONTROLS
*********************************************/
.reveal .controls div.navigate-left, .reveal .controls div.navigate-left.enabled {
border-right-color: var(--color-2); }
.reveal .controls div.navigate-right, .reveal .controls div.navigate-right.enabled {
border-left-color: var(--color-2); }
.reveal .controls div.navigate-up, .reveal .controls div.navigate-up.enabled {
border-bottom-color: var(--color-2); }
.reveal .controls div.navigate-down, .reveal .controls div.navigate-down.enabled {
border-top-color: var(--color-2); }
.reveal .controls div.navigate-left.enabled:hover {
border-right-color: var(--color-1); }
.reveal .controls div.navigate-right.enabled:hover {
border-left-color: var(--color-1); }
.reveal .controls div.navigate-up.enabled:hover {
border-bottom-color: var(--color-1); }
.reveal .controls div.navigate-down.enabled:hover {
border-top-color: var(--color-1); }