-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
73 lines (42 loc) · 1.49 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
---
---
body { font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; }
ul { list-style-type: square; }
/******************************
*note: wrap projection stuff with @media screen - why? do NOT mess up printing with position: absolute etc.
*
* todo/check: wrap everything? and add a print stylesheet - why? why not?
*/
@media screen {
a:link, a:visited { color: black; }
/***************************************
* note: for bespoke.js compatibility use bespoke-slide (instead of slide) etc. */
.bespoke-slide h1.fullscreen {
position: absolute;
top: 40%;
width: 100%; }
/* lets you create slides with no heading (because heading is hidden but gets included in toc) */
.bespoke-slide h1.hidden { display: none; }
} /* @media screen */
/**********************************/
/* general text-alignment classes */
.left { text-align: left; }
.center { text-align: center; }
.right { text-align: right; }
/**********************************/
/* general font-size classes */
.small { font-size: 97%; }
.x-small,
.smaller { font-size: 88%; }
.xx-small,
.smallest,
.tiny { font-size: 82%; }
.footnote { font-size: 88%; }
.footnote a:first-of-type { text-decoration: none; }
pre { padding: 4px 4px 4px 4px;
border-top: #bbb 1px solid;
border-bottom: #bbb 1px solid;
background: #f3f3f3; }
.help p,
.help td { font-size: 88%; }
{{ more_content_for_css }}