11
|
1
|
|
2
|
|
3
|
|
4 @import url(s6/projection.css); /* required to make the slide show run at all */
|
|
5
|
|
6 body { font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; }
|
|
7
|
|
8 a:link, a:visited { color: black; }
|
|
9
|
|
10 .slide h1 { font-size: 30pt; }
|
|
11
|
|
12 .slide h1 { text-align: center; }
|
|
13
|
|
14 .slide h1.fullscreen { position: absolute;
|
|
15 top: 40%;
|
|
16 width: 100%; }
|
|
17
|
|
18 /* lets you create slides with no heading (because heading is hidden but gets included in toc) */
|
|
19 .slide h1.hidden { display: none; }
|
|
20
|
|
21
|
|
22 .slide h2 { font-size: 28pt; }
|
|
23
|
|
24 h3 { font-size: 25pt; }
|
|
25
|
|
26 /* todo: add special formating for .cover slide
|
|
27 lets you use h1(cover). for title/cover slide (a la S5 slide0) but more generic (not bound to 1st slide)
|
|
28 */
|
|
29
|
|
30 .cover h1 { /* tbd */ }
|
|
31 .cover h2 { /* tbd */ }
|
|
32
|
|
33 /* todo: add special formating for h1, h2 in footer */
|
|
34
|
|
35 #footer h1 { /* tbd */ }
|
|
36 #footer h2 { /* tbd */ }
|
|
37
|
|
38
|
|
39 p, li, dt, dd, td, th { font-size: 18pt; }
|
|
40
|
|
41 ul { list-style-type: square; }
|
|
42
|
|
43 /**********************************/
|
|
44 /* general text-alignment classes */
|
|
45
|
|
46 .left { text-align: left; }
|
|
47 .center { text-align: center; }
|
|
48 .right { text-align: right; }
|
|
49
|
|
50 /**********************************/
|
|
51 /* general font-size classes */
|
|
52
|
|
53 .small { font-size: 97%; }
|
|
54
|
|
55 .x-small,
|
|
56 .smaller { font-size: 88%; }
|
|
57
|
|
58 .xx-small,
|
|
59 .smallest,
|
|
60 .tiny { font-size: 82%; }
|
|
61
|
|
62
|
|
63
|
|
64 pre { font-size: 16pt; }
|
|
65
|
|
66 .code {
|
|
67 background-color: azure;
|
|
68 padding: 5px;
|
|
69 }
|
|
70
|
|
71 .footnote a:first-of-type { text-decoration: none; }
|
|
72
|
|
73
|
|
74 p.small { font-size: 97%; }
|
|
75
|
|
76 p.x-small,
|
|
77 p.smaller,
|
|
78 p.footnote { font-size: 88%; }
|
|
79
|
|
80 p.xx-small,
|
|
81 p.smallest,
|
|
82 p.tiny { font-size: 82%; }
|
|
83
|
|
84
|
|
85 .help p,
|
|
86 .help td { font-size: 88%; }
|
|
87
|
|
88
|
|
89 .step { color: silver; }
|
|
90 /* or hide next steps e.g. .step { visibility: hidden; } */
|
|
91 .stepcurrent { color: black; }
|
|
92
|
|
93
|
|
94
|
|
95
|