forked from sarahmeyer/javascript-minus-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathslide.css
More file actions
79 lines (66 loc) · 883 Bytes
/
Copy pathslide.css
File metadata and controls
79 lines (66 loc) · 883 Bytes
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
body {
margin: 0;
font-family: Calibri;
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;
}
.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;
display: inline-block;
padding: 8px 12px;
}
.margin-center {
margin-right: auto;
margin-left: auto;
}
.absolute {
position: absolute;
}
img {
margin-top: 20px;
}
h2 {
font-size: 48px;
color: blue;
text-align: center;
}
li {
margin-bottom: 15px;
text-align: center;
}