Clean-up header and footer handling code.
[hacks/simpleWebSlides.git] / themes / default.css
1 /* Default document properties */
2 body {
3     font-family: sans-serif;
4     font-size: 18pt;
5 }
6
7 /* The slide should be positioned w.r.t. to the canvas.
8    The canvas takes up the whole window in screen mode and a
9    whole page in print mode
10 */
11 .sws-slide {
12     margin: 10pt;
13     border-width:1mm;
14     border-radius:5mm;
15     border-color:black;
16     border-style:solid;
17     left:0pt;
18     right:0pt;
19     top:0pt;
20     bottom:0pt;
21     padding:5mm;
22 }
23
24 /* slide title */
25 .sws-slide h1 {
26     font-size: xxx-large;
27     font-weight: bolder;
28
29 }
30
31 span.sws-slide-num-sep:after {
32     content : "/";
33 }
34 .sws-footer {
35     text-align: center;
36 }
37 .alert {
38     color: red;
39 }
40
41 /* Simple transition in presentation mode */
42 @media screen {
43     .sws-inactive-slide {
44         visibility: hidden;
45     }
46     .sws-current-slide {
47         visibility: visible;
48     }
49 }