-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
102 lines (89 loc) · 1.52 KB
/
style.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
body, html {
height: 100%;
}
body {
padding: 0;
margin: 0;
background-color: black;
color: #fff;
font-family: "Roboto Slab", Helvetica;
}
.interim {
color: #999;
}
.carousel {
height: 100vh;
text-align: center;
width: 100%;
}
.carousel-cell {
text-align: center;
height: 100vh;
margin: 0;
width: 100%;
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.carousel-cell img {
max-width: 100%;
height: auto;
}
.caption {
text-align: center;
text-transform: uppercase;
margin-top: 0.5em;
position: absolute;
top: 6%;
left: 0;
right: 0;
}
.caption span {
font-family: "League Gothic", LeagueGothic, Helvetica;
font-size: 15vh;
background-color: rgba(0,0,0,0.5);
color: white;
padding: 0.2em;
display: inline-block;
}
#captioned-text {
text-align: left;
position: absolute;
top: 70%;
left: 10%;
right: 10%;
z-index: 1000;
height: 27vh;
font-size: 5vh;
font-family: "Roboto Slab", Helvetica;
opacity: 0.9;
overflow-y: scroll;
}
#captioned-text::-webkit-scrollbar {
display: none;
}
#captioned-text p {
display: inline-block;
background-color: black;
color: white;
padding: 0.2em;
}
#interim_text {
color: rgb(200,200,200);
}
.info-upgrade {
position: absolute;
top: 100px;
width: auto;
border: 4px double black;
padding: 50px;
background-color: white;
color: black;
text-align: center;
z-index: 1000;
left: 100px;
right: 100px;
}
.flickity-page-dots {
display: none;
}