-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
maintenance.html
186 lines (163 loc) · 4.12 KB
/
maintenance.html
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Down for maintenance | freeCodeCamp.org</title>
<link
rel="icon"
href="https://raw.githubusercontent.com/freeCodeCamp/freeCodeCamp/master/docs/images/branding/favicon.ico"
/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta
name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
/>
<style>
@import url("https://fonts.googleapis.com/css?family=Roboto+Mono&display=swap");
html {
background-color: #ffffff;
display: flex;
align-items: center;
justify-content: center;
}
body {
font-family: "Roboto Mono", monospace;
color: #0a0a23;
font-size: 18px;
padding: 1em;
line-height: 1.4;
text-align: left;
display: flex;
align-items: center;
justify-content: center;
margin-top: 5vw;
}
.error-middle {
display: block;
width: 80vw;
}
a {
color: #0a0a23;
text-decoration: underline;
}
a:hover {
color: #f5f6f7;
background-color: #1b1b32;
cursor: pointer;
text-decoration: none;
}
a:active {
box-shadow: none;
top: 5px;
}
.cloudflare-block {
padding: 1em;
margin: 1em;
}
.cloudflare-block h1 {
font-size: 1em;
}
.cloudflare-block p,
.cloudflare-block ul,
.cloudflare-block li {
font-size: 1em;
}
.universal-nav {
margin: 0px;
width: 100vw;
height: 2.5rem;
background-color: #0a0a23;
position: fixed;
top: 0px;
display: flex;
justify-content: center;
}
.universal-nav img {
margin: 7px 0px;
height: 24px;
}
.youtube-embed {
text-align: center;
}
.youtube-player {
width: 100%;
}
@media (min-width: 505px) {
.youtube-player {
height: 15rem;
}
}
@media (min-width: 768px) {
.youtube-player {
height: 20rem;
}
.error-middle {
width: 60vw;
}
}
@media (min-width: 1135px) {
.youtube-player {
width: 80%;
height: 30rem;
}
}
</style>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-55446531-11"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "UA-55446531-11");
</script>
</head>
<body>
<div class="universal-nav">
<img
alt="freeCodeCamp.org"
src="https://raw.githubusercontent.com/freeCodeCamp/freeCodeCamp/master/docs/images/branding/primary_logo.svg"
/>
</div>
<div class="error-middle">
<h2>
We are upgrading this part of freeCodeCamp.org for the next few minutes.
</h2>
<h3>
Here’s something to watch while you wait:
</h3>
<div class="youtube-embed">
<iframe
class="youtube-player"
src="https://www.youtube-nocookie.com/embed/rAUn1Lom6dw"
frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
></iframe>
<p>
<a
href="https://www.youtube.com/watch?v=rAUn1Lom6dw"
rel="noreferrer noopener"
target="_blank"
>How to Build Your Own Tetris Game with JavaScript</a
>.
</p>
</div>
<h3>
You should
<a
href="https://twitter.com/freecodecamp"
target="_blank"
rel="noopener"
>follow us on twitter</a
>
for updates. We thank you for your patience while we make
freeCodeCamp.org faster.
</h3>
</div>
</body>
</html>