-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
index-new-app.html
152 lines (128 loc) · 3.08 KB
/
index-new-app.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Landing | 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 working on something new on this part of freeCodeCamp.
</h2>
<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.
</h3>
</div>
</body>
</html>