update Linuxwoche slides
[slides.git] / linuxwochen2009 / slides.css
CommitLineData
dfd0fabc 1/**************************
2 * styles for talk slides *
3 * by Robert Kaiser *
4 * <kairo@kairo.at> *
5 * (for FOSDEM 2008) *
6 **************************/
7
8
9/***** base style *****/
10
11body {
12 margin: 0px;
13 padding: 0px;
14 border: 0px;
15 font-family: Arial,Helvetica,sans-serif;
16 font-size: 1.75em;
b86ca6e0 17 color: white;
18 background-color: black;
dfd0fabc 19}
20
21ul {
22 padding-left: 1.2em;
23 margin-bottom: 0.5em;
24}
25
26ul:first-child,
27ul:last-child {
28 margin-top: 0;
29}
30
31#header {
32 height: 38px;
33 position: relative;
b86ca6e0 34 border-bottom: 1px solid #781412;
35 background: #000000 url("template/header-background.png") top left repeat-x;
dfd0fabc 36 padding: 0 15px 0 0;
37 z-index: 1;
38}
39
b86ca6e0 40#headerlogo {
41 height: 38px;
42 width: 186px;
43}
44
dfd0fabc 45#header-text {
46 float: right;
47 padding: 7px 20px;
48 font-size: 24px;
49 font-weight: bold;
b86ca6e0 50 color: #FFCCCC;
dfd0fabc 51}
52
53#header-text.neartime {
b86ca6e0 54 color: #CCCCFF;
dfd0fabc 55}
56
57#header-text.ontime {
b86ca6e0 58 color: #CCFFCC;
dfd0fabc 59}
60
61#header-text.overtime {
b86ca6e0 62 color: #FF8080;
dfd0fabc 63}
64
65#slidenav {
b86ca6e0 66 background: #f02925 url("template/breadcrumbs-background.png") bottom repeat-x;
dfd0fabc 67 padding: 4px 15px 30px 55px;
68 padding-top: 4px;
69 font-size: 10px;
b86ca6e0 70 color: #FFCCCC;
dfd0fabc 71}
72
73#slidenav a:link,
74#slidenav a:visited {
b86ca6e0 75 color: #FFFFFF;
dfd0fabc 76}
77
78#slidenav a:hover,
79#slidenav a:active {
b86ca6e0 80 color: #FFCCCC;
dfd0fabc 81}
82
83#slidenav .nolink {
b86ca6e0 84 color: #AA8080;
dfd0fabc 85}
86
87#subheader-text {
88 float: right;
89 padding: 0 20px;
90}
91
92/***** headers *****/
93
94h1 {
95 margin: 0 0 0.5em 0;
96 font-size: 1.7em;
97 font-weight: bold;
98 text-align: center;
b86ca6e0 99 text-shadow: #AA8080 3px 3px 5px;
dfd0fabc 100}
101
102h2 {
103 margin: 0.5em 0;
104 font-size: 1.3em;
105 font-weight: bold;
106 text-align: center;
b86ca6e0 107 text-shadow: #AA8080 2px 2px 3px;
dfd0fabc 108}
109
110h3 {
111 margin: 0.5em 0;
112 font-size: 1.1em;
113 font-weight: bold;
114 text-align: center;
115}
116
117h4 {
118 margin: 0.5em 0;
119 font-size: 1em;
120 font-weight: bold;
121 text-align: left;
122}
123
124/***** boxes *****/
125
126.simplebox {
127 padding: 0.5em;
128}
129
130.captionedbox {
131 padding: 0px;
132}
133
134.simplebox,
135.captionedbox {
136 margin: 1em;
b86ca6e0 137 border: 1px solid #FF8080;
138 background-color: #400000;
dfd0fabc 139 -moz-border-radius: .5em;
b86ca6e0 140 -moz-box-shadow: #AA8080 1px 1px 3px 2px;
dfd0fabc 141}
142
143.captionedbox-content {
144 margin: 0px;
145 padding: 0.5em;
146 border: 0px;
147 border-top: 2px solid #9FCBF7;
b86ca6e0 148 -moz-border-top-colors: #FFFFFF #FF8080;
dfd0fabc 149 -moz-border-radius: 0 0 .5em .5em;
150}
151
152.captionedbox-caption {
153 margin: 0.5em;
154 font-weight: bold;
b86ca6e0 155 text-shadow: #804040 1px 1px 2px;
dfd0fabc 156}
157
158/***** misc formatting *****/
159
160.hilite {
161 font-weight: bold;
162 color: #0060C0;
163 text-shadow: #5959ec 1px 1px 1px;
164}
165
166.border {
167 border: 1px solid #FF8080;
168 padding: 0.5em;
169}
170
171ul > li {
172 margin: 0.5em 0;
173}
174
175.cent {
176 text-align: center;
177}
178
179.akey {
180 text-decoration: underline;
181}
182
b86ca6e0 183a:link { color: #CCCCFF; text-decoration: none; }
184a:visited { color: #EECCFF; text-decoration: none; }
185a:hover, a:active { color: #FFCCCC; text-decoration: underline; }
dfd0fabc 186
187/***** small stuff *****/
188
189.small {
190 font-size: 0.75em;
191}
192
193ul.small,
194.small ul {
195 padding: 0px;
196 border: 0px;
197 margin: 0px 0px 0px 1em;
198}
199
200ul.small > li
201.small ul > li {
202 margin: 0px;
203 padding: 0px;
204 border: 0px;
205}