-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
447 lines (405 loc) · 10.7 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
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
/****************************************************
* Style-sheet for my PhD-defense
* Strongly inspired by the impress.js totorial from
* https://github.com/bartaz/impress.js/
****************************************************/
/****************************************************************
* These first couple lines are copy-pasted from the tutorial *
****************************************************************/
/*
We start with a good ol' reset.
That's the one by Eric Meyer http://meyerweb.com/eric/tools/css/reset/
You can probably argue if it is needed here, or not, but for sure it
doesn't do any harm and gives us a fresh start.
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
/*
Now here is when interesting things start to appear.
We set up <body> styles with default font and nice gradient in the background.
And yes, there is a lot of repetition there because of -prefixes but we don't
want to leave anybody behind.
*/
body {
font-family: 'PT Sans', sans-serif;
min-height: 740px;
/*Set a hex-color like this*/
/*background: #7abfff;*/
background: rgb(215,215,215);
background: -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 500, from(rgb(240, 240, 240)), to(rgb(190, 190, 190)));
background: -webkit-radial-gradient(rgb(240, 240, 240), rgb(190, 190, 190));
background: -moz-radial-gradient(rgb(240, 240, 240), rgb(190, 190, 190));
background: -ms-radial-gradient(rgb(240, 240, 240), rgb(190, 190, 190));
background: -o-radial-gradient(rgb(240, 240, 240), rgb(190, 190, 190));
background: radial-gradient(rgb(240, 240, 240), rgb(190, 190, 190));
}
/*
Now let's bring some text styles back ...
*/
b, strong { font-weight: bold }
i, em { font-style: italic }
/*
Because the main point behind the impress.js demo is to demo impress.js
we display a fallback message for users with browsers that don't support
all the features required by it.
All of the content will be still fully accessible for them, but I want
them to know that they are missing something - that's what the demo is
about, isn't it?
And then we hide the message, when support is detected in the browser.
*/
.fallback-message {
font-family: sans-serif;
line-height: 1.3;
width: 780px;
padding: 10px 10px 0;
margin: 20px auto;
border: 1px solid #E4C652;
border-radius: 10px;
background: #EEDC94;
}
.fallback-message p {
margin-bottom: 10px;
}
.impress-supported .fallback-message {
display: none;
}
/*
Now let's style the presentation steps.
We start with basics to make sure it displays correctly in everywhere ...
*/
.step {
position: relative;
width: 1000px;
height:700px;
padding: 90px 100px;
margin: 20px auto;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
/*Let the text be not 100% black*/
color: #555555;
text-shadow: 0 2px 2px rgba(0, 0, 0, .1);
font-family: 'Open Sans', Arial, sans-serif;
font-size: 30px;
line-height: 40px;
letter-spacing: -1px;
}
/* Basically we remove the margin and make inactive steps a little bit
transparent. */
.impress-enabled .step {
margin: 0;
opacity: 0.4;
-webkit-transition: opacity 1s;
-moz-transition: opacity 1s;
-ms-transition: opacity 1s;
-o-transition: opacity 1s;
transition: opacity 1s;
}
.impress-enabled .step.active { opacity: 1 }
/*Style the substeps used by a fork of impress.js*/
.impress-enabled .substep {
opacity: 0.1;
-webkit-transition: all 1s;
-moz-transition: all 1s;
-ms-transition: all 1s;
-o-transition: all 1s;
transition: all 1s;
}
.impress-enabled .substep.active {
opacity: 1;
}
.impress-enabled .substep.present {
/*color: rgb(100, 135, 195);*/
}
.impress-enabled .substep.past {
opacity: 0.3;
}
/*
These 'slide' step styles were heavily inspired by HTML5 Slides:
http://html5slides.googlecode.com/svn/trunk/styles.css
They cover everything what you see on first three steps of the demo.*/
.slide {
display: block;
width: 1000px;
height: 700px;
padding: 90px 100px; /* Extra space from top (90) and left side (100)*/
background-color: white;
border: 1px solid rgba(0, 0, 0, .3);
border-radius: 40px;
box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
}
/*******************************************************
* Done with the copy-paste (mostly), lets get jiggy *
*******************************************************/
/************************
* Some generel stuff *
************************/
h1 {
font-size: 40pt;
text-align: center;
line-height:45pt;
padding-bottom:15px;
}
h2 {
font-size: 35pt;
text-align: center;
line-height:35pt;
padding-bottom:15px;
}
h3 {
font-size: 30pt;
text-align: center;
line-height:25pt;
padding-bottom:15px;
}
h4 {
font-size: 20pt;
text-align: center;
line-height:15pt;
padding-bottom:15px;
}
p{
font-size:20pt;
line-height:20pt;
}
sub {
vertical-align:text-bottom;
font-size:65%;
line-height:100%;
}
sup {
vertical-align:text-top;
font-size:65%;
line-height:100%;
}
/********************
* Table settings *
********************/
table, th, td{
}
table{
/*width:100%;*/
}
td{
/*text-align:center;*/
/*vertical-align:middle;*/
/*height:80px;*/
}
/*****************
* Title slide *
*****************/
#title p{
font-size:20pt;
line-height:22pt;
}
/************************
* Introduction slide *
************************/
#intro_slide table,
#intro_slide tr,
#intro_slide td,
#intro_slide th
{
/*border:1px solid black;*/
}
.th{
font-size:23pt;
line-height:25pt;
font-weight:bold;
text-align:center;
}
#vitaly{
width:250px;
border-radius:10px;
overflow: hidden;
box-shadow:5px 5px 5px rgba(0,0,255,0.3);
/*-webkit-transform: rotate(2deg);*/
}
#intro_slide .substep.past {
opacity: 0.6;
}
/*****************************
* Zero-range models slide *
*****************************/
#zero_range_models_slide .substep.past{
opacity:1;
}
/**************************************
* Hyperspherical coordinates slide *
**************************************/
#hyper_coords_slide p{
font-size:25pt;
line-height:25pt;
}
/*******************
* outline slide *
*******************/
/*List settings*/
#outline ul {
list-style-type:circle;
font-size:30pt;
line-height:40pt;
}
/* Some play with scaling, this is copy paste from the demo slides
/* ... so we define display to `inline-block` to enable transforms and
transition duration to 0.5s ... */
#outline span {
display: inline-block;
-webkit-transition: 0.5s;
-moz-transition: 0.5s;
-ms-transition: 0.5s;
-o-transition: 0.5s;
transition: 0.5s;
}
/* ... and 'scaling' to scale down after another quarter of a second. */
#outline.present .scale {
-webkit-transform: scale(2.0);
-moz-transform: scale(2.0);
-ms-transform: scale(2.0);
-o-transform: scale(2.0);
transform: scale(2.0);
-webkit-transition-delay: 0.5s;
-moz-transition-delay: 0.5s;
-ms-transition-delay: 0.5s;
-o-transition-delay: 0.5s;
transition-delay: 0.5s;
}
/************************
* hyper_coords_slide *
************************/
#hyper_coords_slide th{
font-size:25pt;
}
/*************************
* Recombination slide *
*************************/
#recombination_slide .substep.past{
opacity:1;
}
/********************
* Optical model *
********************/
.figure-container {
box-sizing: border-box;
width: 850px;
height: 550px;
padding: 15px 15px 15px 15px;
/*margin: 15px auto 30px auto;*/
border: 1px solid #ddd;
background: #fff;
background: linear-gradient(#f6f6f6 0, #fff 50px);
background: -o-linear-gradient(#f6f6f6 0, #fff 50px);
background: -ms-linear-gradient(#f6f6f6 0, #fff 50px);
background: -moz-linear-gradient(#f6f6f6 0, #fff 50px);
background: -webkit-linear-gradient(#f6f6f6 0, #fff 50px);
box-shadow: 0 3px 10px rgba(0,0,0,0.15);
-o-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
-ms-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
-moz-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
-webkit-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
/*Typeset the legend*/
.figure-container table, th, td{
background:transparent;
}
.figure-container td{
text-align:left;
vertical-align:middle;
}
.fixed{
table-layout:fixed;
width:100%;
}
/********************
* Figure 2 slide *
********************/
/******************************
* Finite temperature slide *
******************************/
#finite_temperature ul{
list-style-type:circle;
font-size:20pt;
line-height:30pt;
}
/***************************
* Mass-imbalanced slide *
***************************/
#mass_imbalanced_slide table{
table-layout:fixed;
width:100%;
}
#mass_imbalanced_slide .substep {
opacity: 0.3;
}
#mass_imbalanced_slide .substep.active {
opacity: 1;
}
#mass_imbalanced_slide ul{
list-style-type:circle;
font-size:24pt;
line-height:45pt;
}
/***************************
* efimov_spectrum_slide *
***************************/
table, tr,td{
/*border:1px solid black;*/
}
/**************************************************
* The overview slide with the thank you notice *
**************************************************/
#overview{
display: block;
width: 600px;
height: 150px;
padding: 10px 100px;
/*background-color: white;*/
border: 1px solid rgba(0, 0, 0, .3);
border-radius: 40px;
box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
text-shadow: 0 2px 2px rgba(0, 0, 0, .1);
font-family: 'Open Sans', Arial, sans-serif;
}