Make help more visible.
[hacks/simpleWebSlides.git] / themes / webTwoPointO.css
1 @import url(https://fonts.googleapis.com/css?family=Armata&subset=latin,latin-ext);
2 @import url(https://fonts.googleapis.com/css?family=Inconsolata:400,700&subset=latin,latin-ext);
3
4 /* Slide layout
5    .sws-{header,inner-canvas,footer} are in
6    a .sws-canvas which fills the whole viewport vertically
7    and is horizontally centered.
8    The .sws-canvas has an aspect ratio of 4/3 or 16/9
9 */
10 /* No header in this theme */
11 .sws-header {
12     display: none;
13 }
14
15 /* Title of the slide */
16 h1 {
17     color: #f14a29;
18     font-size: 5vh;
19     text-align:center;
20 }
21 /* The inner canvas and content */
22 .sws-inner-canvas {
23     top: 0vh;
24     height: 85vh;
25 }
26 .sws-content {
27     padding: 3vh;
28 }
29
30 .sws-footer {
31     top: 95vh;
32     height: 5vh;
33     text-align: right;
34 }
35
36 .sws-slide-num-sep:after {
37     content: "/";
38 }
39
40 body {
41     font-family: 'Armata',sans-serif;
42     font-size: 3vh;
43     background-color: black;
44     color: white;
45 }
46
47 code, pre, tt {
48     font-family: 'Inconsolata', monospace;
49 }
50 code {
51     white-space: pre;
52 }
53
54 ul {
55     list-style-type: square;
56 }
57
58
59
60 em { color: #f14a29;
61      font-style:normal;
62    }
63
64 a {
65     color: #1092bf;
66     text-decoration:none;
67     font-style:normal;
68 }
69
70 .centerbox {
71     text-align: center;
72 }