-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbig.css
112 lines (93 loc) · 1.64 KB
/
big.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
html {
height: 100%;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'avenir next', avenir, helvetica, 'helvetica neue', ubuntu, roboto, noto, 'segoe ui', arial, sans-serif;
background: #FFEBCA;
color: #333745;
margin: 0;
padding: 5;
font-weight: bold;
}
h1,
h2,
h3,
p {
margin: 0;
}
em,
a {
font-style: normal;
color: #3E6FB2;
}
a {
background: #333745;
color: #FFAD29;
text-decoration: none;
}
strong {
color: #FF2151;
}
img {
width: 100%;
}
div.slide-container {
background-size: contain;
background-repeat: no-repeat;
display: flex;
align-items: center;
padding: 5px;
}
div.slide {
box-sizing: border-box;
cursor: pointer;
cursor: hand;
padding: 4%;
}
div.imageText {
text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
/* normally not good, but ok in context of full screen directional navigation */
:focus {
outline: 0;
}
body.talk-mode {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
}
body.print-mode {
background: #fff;
color: #000;
font-weight: normal;
padding: 30px 20px;
}
body.print-mode div.sub-container {
padding: 10px 20px;
display: flex;
flex-flow: row wrap;
}
ul.notes-list {
display: inline-block;
float: left;
vertical-align: top;
}
body.print-mode div.slide-container {
border: 1px solid #000;
}
body.jump-mode {
padding: 10px;
}
body.jump-mode div.sub-container {
display: inline-block;
vertical-align: top;
padding: 2px;
}
body.jump-mode div.slide-container {
border: 1px solid rgba(255, 255, 255, 0.2);
cursor: pointer;
}
body.jump-mode div.slide-container:hover {
border: 1px solid rgba(255, 255, 255, 0.8);
}