-
Notifications
You must be signed in to change notification settings - Fork 0
/
big.css
121 lines (99 loc) · 1.75 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
113
114
115
116
117
118
119
120
121
html {
height: 100%;
}
body {
font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, Ubuntu, roboto, noto, segoe ui, arial, sans-serif;
font-weight: 700;
margin: 0;
padding: 0;
}
h1,
h2,
h3,
p {
margin: 0;
}
em {
font-style: normal;
}
.nowrap {
white-space: nowrap;
}
* {
box-sizing: border-box;
}
div.slide-container {
background-size: 100%;
display: flex;
align-items: center;
justify-content: center;
}
div.slide {
cursor: pointer;
cursor: hand;
}
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 */
.talk-mode .slide: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: 0px;
}
body.print-mode div.sub-container {
padding: 10px 20px;
display: flex;
flex-flow: row wrap;
break-inside: avoid;
}
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);
}
.layout {
display: grid;
}
.layout div {
display: flex;
align-items: center;
}
.layout img {
object-fit: contain;
width: 100%;
height: 100%;
}
div.slide > img:only-child,
div.slide > canvas:only-child,
div.slide > video:only-child {
width: 100%;
}