-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
115 lines (100 loc) · 1.98 KB
/
main.css
File metadata and controls
115 lines (100 loc) · 1.98 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
@font-face {
font-family: "GT Super Display Bold";
src: url("GTSuper/GT-Super-Display-Bold.ttf");
}
body {
background-color: black;
}
.columnar {
flex-direction: column;
}
.center {
display: flex;
align-items: center;
justify-content: center;
}
.website-title {
font-family: 'Roboto Condensed', sans-serif;
font-size: 22px;
color: white;
padding-bottom: 30px;
}
.website-sub-title {
font-family: 'GT Super Display Bold', serif;
font-size: 64px;
color: white;
padding-bottom: 40px;
}
.thumbnail-section-wrap {
max-width: 1125px;
display: flex;
flex-wrap: wrap;
flex-direction: row;
}
.thumbnail {
position: relative;
text-align: center;
color: white;
}
/* This is a lot of CSS to center some text on an img. I should have made the img a
background image and I think I would have had an easier time but I didn't */
.thumbnail-text-centered {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
pointer-events: none;
font-family: 'GT Super Display Bold', serif;
font-size: 40px;
color: white;
}
.thumbnail-wrap {
flex: none;
width: 375px;
height: 187.5px;
object-fit: cover;
cursor: pointer;
}
.video-overlay {
height: 100%;
width: 100%;
display: none;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background-color: rgba(0,0,0,0.9);
border-style: solid;
border-left-width: 0px;
border-top-width: 8px;
}
.video-player {
display: flex;
flex-direction: row;
/* padding-top: 40px; */
height: 400px;
}
.video-title {
font-size: 14px;
font-family: 'Roboto Condensed', sans-serif;
color: white;
width: 50px;
/* hack to get alignment of vertical text */
padding-top: 30px;
margin-top: 30px;
}
.video-embed {
width: 650px;
padding-right: 32px;
padding-left: 32px;
}
.video-close-button {
cursor: pointer;
color: rgba(0,0,0,0.9);
width: 50px;
font-family: 'Roboto Condensed', sans-serif;
}
.vertical-text {
transform: rotate(270deg);
transform-origin: left top 0;
}