-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathPresentation.css
More file actions
129 lines (107 loc) · 2.87 KB
/
Copy pathPresentation.css
File metadata and controls
129 lines (107 loc) · 2.87 KB
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
122
123
124
125
126
127
128
129
/*
* Copyright 2020 znai maintainers
* Copyright 2019 TWO SIGMA OPEN SOURCE, LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
.presentation {
display: flex;
flex-direction: column;
height: 100vh;
width: 100vw;
--znai-presentation-text-font-size: 4cqw;
--znai-presentation-text-max-width: 70cqw;
}
.presentation .header {
display: flex;
flex: 0 0 80px;
border-bottom: 1px solid var(--znai-presentation-border-color);
}
.presentation .header .product-info {
display: flex;
flex: 0 0 280px;
align-items: center;
color: var(--znai-presentation-title-color);
background-color: var(--znai-presentation-title-background-color);
border-right: 1px solid var(--znai-presentation-border-color);
padding: 0 10px;
}
.presentation .header .product-info .product-title {
margin-left: 10px;
font-size: 22px;
padding: 10px;
}
.presentation .header .product-info img {
margin-left: 10px;
}
.presentation .header .slide-info {
display: flex;
align-items: center;
background-color: var(--znai-presentation-slide-info-background-color);
color: var(--znai-presentation-slide-info-color);
font-size: 26px;
flex: 1;
padding-left: 30px;
}
.presentation-title-divider {
margin: 0 20px;
color: var(--znai-presentation-title-divider);
}
.znai-presentation-controls {
display: flex;
flex: 0 0 80px;
align-items: center;
justify-content: space-between;
background-color: var(--znai-presentation-slide-info-background-color);
color: var(--znai-presentation-slide-info-color);
}
.znai-presentation-controls .close {
color: var(--znai-presentation-slide-info-color);
margin: 20px;
cursor: pointer;
}
.znai-presenter-mode-toggle {
cursor: pointer;
margin-right: 16px;
}
.presentation .content-block {
width: auto;
margin: 0;
}
.presentation .snippet-container {
background: none;
}
.presentation .paragraph {
margin: 0;
}
.presentation .snippet,
.presentation .json,
.presentation .latex-math {
border: none;
}
.presentation-title-slide {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.presentation-title-chapter {
margin-bottom: 24px;
font-size: 28px;
text-align: center;
color: var(--znai-presentation-title-color);
opacity: 0.7;
}
h1.presentation-title {
font-size: 50px;
}