-
Notifications
You must be signed in to change notification settings - Fork 1
/
slide.css
100 lines (84 loc) · 1.12 KB
/
slide.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
body {
margin: 0;
font-family: "Proxima Nova";
font-weight: 200;
font-size: 2rem;
color: white;
background-color: red;
}
h1 {
margin-right: 2rem;
margin-left: 2rem;
font-size: 6rem;
}
h2 {
font-size: 4rem;
color: blue;
text-align: center;
background-color: white;
padding: 1rem;
}
h3 {
}
ol,
ul {
text-align: left;
margin-right: 2rem;
}
li {
margin-bottom: 15px;
padding: 1rem;
background-color: white;
color: black;
list-style-position: inside;
}
ul,
ol,
p {
max-width: 80%;
margin-right: auto;
margin-left: auto;
}
pre,
code {
background-color: yellow;
color: black;
}
pre {
padding: 1rem;
text-align: justify;
}
.content {
height: 100%;
width: 100%;
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
.slide {
height: 0;
width: 0;
display: none;
text-align: center;
}
.slide.visible-slide {
height: 100%;
width: 100%;
position: absolute;
top: 0;
right: 0;
display: block;
}
.margin-center {
margin-right: auto;
margin-left: auto;
}
.absolute {
position: absolute;
}
.white-area {
background-color: white;
color: black;
}