Tue, 27 Sep 2022 14:24:30 -0600
Add lazy loading to video assets
14
e61659f0b0be
- New font linking style
Glitchvid <Glitchvid@glitchvid.com>
parents:
13
diff
changeset
|
1 | @import url('https://fonts.googleapis.com/css?family=Lato:400,400i,700,700i|Nunito:400,700|Arimo&display=swap'); |
e61659f0b0be
- New font linking style
Glitchvid <Glitchvid@glitchvid.com>
parents:
13
diff
changeset
|
2 | |
15
4f366832940e
- Add scrollbar on all pages to fix bumping
Glitchvid <Glitchvid@glitchvid.com>
parents:
14
diff
changeset
|
3 | html { |
4f366832940e
- Add scrollbar on all pages to fix bumping
Glitchvid <Glitchvid@glitchvid.com>
parents:
14
diff
changeset
|
4 | overflow-y: scroll; |
4f366832940e
- Add scrollbar on all pages to fix bumping
Glitchvid <Glitchvid@glitchvid.com>
parents:
14
diff
changeset
|
5 | } |
0 | 6 | body { |
7 | background-color:#202020; | |
8 | } | |
9 | ||
15
4f366832940e
- Add scrollbar on all pages to fix bumping
Glitchvid <Glitchvid@glitchvid.com>
parents:
14
diff
changeset
|
10 | |
4f366832940e
- Add scrollbar on all pages to fix bumping
Glitchvid <Glitchvid@glitchvid.com>
parents:
14
diff
changeset
|
11 | |
0 | 12 | div.main { |
13 | width:1280px; | |
14 | margin-right: auto; | |
15 | margin-left: auto; | |
16 | max-width: 100%; | |
17 | } | |
18 | ||
19 | /* Header Styles */ | |
20 | img.headerlogo { | |
21 | width: 293px; | |
22 | height: 96px; | |
23 | display:block; | |
24 | margin:auto; | |
25 | } | |
26 | ul.buttons { | |
27 | color:#fafafa; | |
28 | padding: 0px; | |
29 | margin: 0px; | |
30 | border-bottom-color: #373737; | |
31 | border-bottom-width: 1px; | |
32 | border-bottom-style: solid; | |
33 | } | |
34 | ul.buttons li { | |
35 | font-family: 'Arimo', sans-serif; | |
36 | font-size: 18px; | |
37 | font-weight: 400; | |
38 | list-style-type: none; | |
39 | text-transform: uppercase; | |
40 | display: inline-block; | |
41 | padding: .25em; | |
42 | padding-left: .25em; | |
43 | padding-right: .25em; | |
44 | } | |
45 | ul.buttons li:hover { | |
46 | background-color: #484848; | |
47 | } | |
48 | li.active{ | |
49 | border-bottom-color: #f79a10; | |
50 | border-bottom-width: 1px; | |
51 | border-bottom-style: solid; | |
52 | background-color: #484848; | |
53 | } | |
54 | ul.buttons a { | |
55 | color:#FAFAFA; | |
56 | text-decoration: none; | |
57 | } | |
58 | ||
59 | ||
2
5322f0778cb1
- Add Features index properly
Glitchvid <Glitchvid@glitchvid.com>
parents:
1
diff
changeset
|
60 | /* Features Nav */ |
5322f0778cb1
- Add Features index properly
Glitchvid <Glitchvid@glitchvid.com>
parents:
1
diff
changeset
|
61 | ul.featuresNav{ |
5322f0778cb1
- Add Features index properly
Glitchvid <Glitchvid@glitchvid.com>
parents:
1
diff
changeset
|
62 | list-style-type: none; |
5322f0778cb1
- Add Features index properly
Glitchvid <Glitchvid@glitchvid.com>
parents:
1
diff
changeset
|
63 | padding: inherit; |
5322f0778cb1
- Add Features index properly
Glitchvid <Glitchvid@glitchvid.com>
parents:
1
diff
changeset
|
64 | font-size: inherit; |
5322f0778cb1
- Add Features index properly
Glitchvid <Glitchvid@glitchvid.com>
parents:
1
diff
changeset
|
65 | } |
5322f0778cb1
- Add Features index properly
Glitchvid <Glitchvid@glitchvid.com>
parents:
1
diff
changeset
|
66 | ul.featuresNav a{ |
5322f0778cb1
- Add Features index properly
Glitchvid <Glitchvid@glitchvid.com>
parents:
1
diff
changeset
|
67 | color:#FAFAFA; |
5322f0778cb1
- Add Features index properly
Glitchvid <Glitchvid@glitchvid.com>
parents:
1
diff
changeset
|
68 | text-decoration: none; |
5322f0778cb1
- Add Features index properly
Glitchvid <Glitchvid@glitchvid.com>
parents:
1
diff
changeset
|
69 | } |
5322f0778cb1
- Add Features index properly
Glitchvid <Glitchvid@glitchvid.com>
parents:
1
diff
changeset
|
70 | ul.featuresNav h1{ |
5322f0778cb1
- Add Features index properly
Glitchvid <Glitchvid@glitchvid.com>
parents:
1
diff
changeset
|
71 | font-size:2em; |
5322f0778cb1
- Add Features index properly
Glitchvid <Glitchvid@glitchvid.com>
parents:
1
diff
changeset
|
72 | margin-top: .1em; |
5322f0778cb1
- Add Features index properly
Glitchvid <Glitchvid@glitchvid.com>
parents:
1
diff
changeset
|
73 | } |
5322f0778cb1
- Add Features index properly
Glitchvid <Glitchvid@glitchvid.com>
parents:
1
diff
changeset
|
74 | div.featureShowcaseContainer { |
5322f0778cb1
- Add Features index properly
Glitchvid <Glitchvid@glitchvid.com>
parents:
1
diff
changeset
|
75 | |
5322f0778cb1
- Add Features index properly
Glitchvid <Glitchvid@glitchvid.com>
parents:
1
diff
changeset
|
76 | } |
5322f0778cb1
- Add Features index properly
Glitchvid <Glitchvid@glitchvid.com>
parents:
1
diff
changeset
|
77 | img.featureShowcase{ |
5322f0778cb1
- Add Features index properly
Glitchvid <Glitchvid@glitchvid.com>
parents:
1
diff
changeset
|
78 | |
5322f0778cb1
- Add Features index properly
Glitchvid <Glitchvid@glitchvid.com>
parents:
1
diff
changeset
|
79 | } |
5322f0778cb1
- Add Features index properly
Glitchvid <Glitchvid@glitchvid.com>
parents:
1
diff
changeset
|
80 | |
0 | 81 | /* Text Styles */ |
82 | div.content { | |
83 | font-family: 'Lato', sans-serif; | |
84 | color:#fafafa; | |
85 | margin: 1em; | |
86 | margin-right: 4em; | |
87 | word-wrap: break-word; | |
88 | overflow-wrap: break-word; | |
89 | } | |
90 | div.content h1 { | |
91 | margin-bottom: .25em; | |
11 | 92 | font-family: 'Nunito', sans-serif; |
93 | letter-spacing: -0.0125em; | |
0 | 94 | } |
95 | div.content h3 { | |
96 | margin-top: .25em; | |
97 | margin-bottom: .25em; | |
11 | 98 | font-family: 'Nunito', sans-serif; |
99 | letter-spacing: -0.0125em; | |
0 | 100 | } |
101 | div.content h4 { | |
102 | margin-top: .25em; | |
103 | margin-bottom: .25em; | |
11 | 104 | font-family: 'Nunito', sans-serif; |
0 | 105 | } |
106 | div.content p { | |
107 | margin: 1em; | |
108 | margin-top: .25em; | |
109 | margin-bottom: .25em; | |
110 | font-size: 0.875em; | |
111 | } | |
1 | 112 | #textNotice { |
113 | width: max-content; | |
114 | background-image: url("missing_5p.png"); | |
115 | padding: 0.3em; | |
116 | border-radius: 4px; | |
117 | border-color: #f800f8d4; | |
118 | border-style: dashed; | |
119 | border-width: 1px; | |
120 | margin-left: 2em; | |
121 | margin-right: 2em; | |
122 | padding-right: 10%; | |
4
f43055fb4a5c
- Fixed overflow of textnotice
Glitchvid <Glitchvid@glitchvid.com>
parents:
2
diff
changeset
|
123 | max-width: 70%; |
1 | 124 | } |
125 | ||
0 | 126 | |
127 | /* Footer Styles */ | |
128 | div.footer { | |
129 | color:#fafafa; | |
130 | border-top-color: #373737; | |
131 | border-top-width: 1px; | |
132 | border-top-style: solid; | |
133 | } | |
134 | div.footer p{ | |
135 | font-family: "Arial", sans-serif; | |
136 | text-align: right; | |
137 | font-size: 12px; | |
138 | margin-top: 16px; | |
139 | margin-right: 2em; | |
140 | } | |
141 | ||
142 | ||
143 | /* Main Body Content Styles */ | |
144 | hr { | |
145 | display: block; | |
146 | margin-top: 0.5em; | |
147 | margin-bottom: 0.5em; | |
148 | margin-left: auto; | |
149 | margin-right: auto; | |
150 | border-style: none; | |
151 | border-width: 0px; | |
152 | border-bottom-color: #373737; | |
153 | border-bottom-style: solid; | |
154 | border-bottom-width: 1px; | |
2
5322f0778cb1
- Add Features index properly
Glitchvid <Glitchvid@glitchvid.com>
parents:
1
diff
changeset
|
155 | } |
0 | 156 | div.contentSection { |
157 | border-color: #282828; | |
158 | border-style: solid; | |
159 | border-width: 1px; | |
160 | border-radius: 3px; | |
161 | padding: 0.25em; | |
162 | /* width: max-content; */ | |
163 | background-color: #1e1e1e; | |
164 | margin-bottom: 0.5em; | |
165 | } | |
166 | div.contentSection a { | |
167 | color:#fafafa; | |
168 | text-decoration: none; | |
169 | } | |
2
5322f0778cb1
- Add Features index properly
Glitchvid <Glitchvid@glitchvid.com>
parents:
1
diff
changeset
|
170 | img.toolIconSM { |
5322f0778cb1
- Add Features index properly
Glitchvid <Glitchvid@glitchvid.com>
parents:
1
diff
changeset
|
171 | float: right; |
5322f0778cb1
- Add Features index properly
Glitchvid <Glitchvid@glitchvid.com>
parents:
1
diff
changeset
|
172 | margin-right: .25em; |
5322f0778cb1
- Add Features index properly
Glitchvid <Glitchvid@glitchvid.com>
parents:
1
diff
changeset
|
173 | } |
0 | 174 | |
175 | /* Media Styles */ | |
176 | div.mediaContainer { | |
10
a18ce529899b
- Make .mediaContainer a flexbox
Glitchvid <Glitchvid@glitchvid.com>
parents:
4
diff
changeset
|
177 | display: flex; |
a18ce529899b
- Make .mediaContainer a flexbox
Glitchvid <Glitchvid@glitchvid.com>
parents:
4
diff
changeset
|
178 | flex-direction: row; |
a18ce529899b
- Make .mediaContainer a flexbox
Glitchvid <Glitchvid@glitchvid.com>
parents:
4
diff
changeset
|
179 | flex-wrap: wrap; |
a18ce529899b
- Make .mediaContainer a flexbox
Glitchvid <Glitchvid@glitchvid.com>
parents:
4
diff
changeset
|
180 | justify-content: center; |
0 | 181 | margin-left: auto; |
182 | margin-right: auto; | |
183 | width: max-content; | |
184 | max-width: 100%; | |
185 | } | |
1 | 186 | div.mediaContainer video { |
187 | max-width: 100%; | |
188 | } | |
189 | img.mediaImage { | |
0 | 190 | max-width: 100%; |
191 | } |