Make help more visible.
[hacks/simpleWebSlides.git] / themes / blackAndWhite.css
1 @import url(http://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700,300italic,400italic,500italic&subset=latin,greek-ext,greek,latin-ext);
2
3 body {
4     font-family: 'Ubuntu', sans-serif;
5     font-size: 18pt;
6 }
7
8 @media screen {
9     body {
10         background: black;
11         color: white;
12     }
13 }
14 @media print {
15     body {
16         background: white;
17         color: black;
18     }
19 }
20
21
22 a, a:visited, em {
23     color:orange;
24 }
25
26
27 ul {
28     list-style-type: square;
29 }
30
31 span.slide_num_sep:after {
32     content : "/";
33 }
34 .footer {
35     text-align: right;
36 }
37
38 .alert {
39     color: green;
40 }
41
42 @media screen {
43 /* Slide transitions, only for screen */
44 .other_slides {
45     opacity: 0.0;
46     transition: opacity 0.25s ease-in;
47 }
48
49 .current_slide {
50     opacity: 1.0;
51     transition: opacity 0.25s ease-out 0.25s;
52 }
53
54 }