4dd0c7813b7fa99c42bc3ed95c31cfc6d2ccf187
[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 .sws-title {
17     top: 0vh;
18     height: 10vh;
19 }
20 .sws-title h1 {
21     color: #f14a29;
22     font-size: 5vh;
23     text-align:center;
24 }
25 /* The inner canvas and content */
26 .sws-inner-canvas {
27     top: 10vh;
28     height: 85vh;
29 }
30 .sws-content {
31     padding: 3vh;
32 }
33
34 .sws-footer {
35     top: 95vh;
36     height: 5vh;
37     text-align: right;
38 }
39
40
41 .sws-slide-num-sep:after {
42     content: "/";
43 }
44
45 body {
46     font-family: 'Armata',sans-serif;
47     font-size: 3vh;
48     background-color: black;
49     color: white;
50 }
51
52 code, pre, tt {
53     font-family: 'Inconsolata', monospace;
54 }
55
56 ul {
57     list-style-type: square;
58 }
59
60
61
62 em { color: #f14a29;
63      font-style:normal;
64    }
65
66 a {
67     color: #1092bf;
68     text-decoration:none;
69     font-style:normal;
70 }
71
72 .centerbox {
73     text-align: center;
74 }