Fix various issues.
[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-weight: bolder;
27 }
28
29 span.sws-slide-num-sep:after {
30     content : "/";
31 }
32 .sws-footer {
33     text-align: center;
34 }
35 .alert {
36     color: red;
37 }