Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gmcninch-tufts
GitHub Repository: gmcninch-tufts/2024-Sp-Math190
Path: blob/main/build-assets/slideous/slideous.css
904 views
1
/* This work is licensed under Creative Commons GNU LGPL License.
2
3
License: http://creativecommons.org/licenses/LGPL/2.1/
4
Version: 1.0
5
6
Author: Stefan Goessner/2005
7
Web: http://goessner.net/
8
*/
9
@media screen, projection {
10
body {
11
background-color: #e3eee7;
12
padding: 0;
13
margin: 0;
14
color: #132;
15
border-color: #678;
16
font-size: 125%;
17
}
18
#statusbar {
19
display: none;
20
position: absolute; z-index: 10;
21
top: auto; bottom: 0; left: 0; right: 0;
22
height: 2em;
23
background-color: #f0fff8;
24
color: #132;
25
font-size: 75%;
26
padding: 0.5em 0.5em 0 2px;
27
border-top: solid 1px #000;
28
}
29
#statusbar button, #tocbox {
30
cursor: pointer;
31
color: #031;
32
background-color: #e0eee7;
33
margin: 1px;
34
padding: 0 0.5em;
35
border: inset 1px black;
36
}
37
#statusbar button:hover, #tocbox:hover {
38
color: #031;
39
background-color: #c0ccc6;
40
border: outset 1px black;
41
}
42
#tocbox {
43
width: 15em;
44
}
45
#eos {
46
visibility: hidden;
47
color: #021;
48
background-color: #fffafa;
49
border: inset 1px black;
50
font-size: 120%;
51
}
52
div.slide {
53
display: block;
54
margin: 0 0 2em 0;
55
padding: 0 150px;
56
}
57
58
div.slide h1 {
59
background: #a0aaa4;
60
color: #f0fff8;
61
padding: 0 0.5em 0 0.5em;
62
margin: 0 -150px;
63
font-size: 120%;
64
border-bottom: solid 1px black;
65
}
66
67
div.slide h1:before { content: "# "; }
68
div.handout { display: block; }
69
70
body>#statusbar { /* ie6 hack for fixing the statusbar - in quirks mode */
71
position: fixed; /* thanks to Anne van Kesteren and Arthur Steiner */
72
} /* see http://limpid.nl/lab/css/fixed/footer */
73
* html body {
74
overflow: hidden;
75
}
76
* html div.slide {
77
height: 100%;
78
padding-bottom: 2em;
79
overflow: auto;
80
} /* end ie6-hack */
81
82
} /* @media screen, projection */
83
84
@media print {
85
body {
86
color: black;
87
font-family: sans-serif;
88
font-size: 11pt;
89
}
90
91
#statusbar { display: none; }
92
div.slide { page-break-after: always; }
93
div.handout { display: block; }
94
95
} /* @media print */
96
97