-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathslide.css
More file actions
97 lines (81 loc) · 1.09 KB
/
slide.css
File metadata and controls
97 lines (81 loc) · 1.09 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
body {
margin: 0;
font-family: "Proxima Nova";
font-weight: 200;
color: white;
background-color: black;
}
h1 {
margin-right: 40px;
margin-left: 40px;
}
.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;
}
.yellow-text {
color: #FFED1F;
}
.blue-text {
color: blue;
}
.white-text {
color: white;
}
.blue-background {
background-color: blue;
}
.red-background {
background-color: red;
}
.blue-background,
.red-background {
display: inline-block;
padding: 8px 16px;
}
.margin-center {
margin-right: auto;
margin-left: auto;
}
.absolute {
position: absolute;
}
img {
margin-top: 20px;
}
h2 {
font-size: 48px;
color: blue;
text-align: center;
}
ol,
ul {
text-align: left;
margin-right: 50px;
}
li {
margin-bottom: 15px;
padding: 10px;
background-color: white;
color: black;
list-style-position: inside;
}