This repository has been archived by the owner on Feb 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
103 lines (90 loc) · 2.38 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv='Content-Type' content='text/html;charset=UTF-8'>
<title>PHONK Editor</title>
<style>
body {}
.loading {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
background: #272822;
font-family: sans-serif, 'Roboto Mono', monospace;
font-weight: 100;
padding: 20px;
color: white;
}
h1 {
font-size: 2.2rem;
margin: 0px;
padding: 0px;
font-weight: 100;
}
.phonk {
font-family: 'Roboto Mono', monospace;
font-weight: 800;
}
.loading p {
font-size: 1rem;
padding: 0;
margin: 0;
font-weight: 100;
color: #fff7;
}
.loading .progress_container {
width: 250px;
height: 2px;
overflow: hidden;
background-color: rgb(0, 0, 0);
margin-top: 52px;
}
.loading .progress {
background-color: rgb(255, 255, 255);
margin-top: 0;
animation-name: loading_animation;
animation-duration: 1.5s;
animation-iteration-count: infinite;
animation-timing-function: linear;
width: 250px;
height: 19px;
}
@keyframes loading_animation {
0% {
margin-left: -250px;
}
100% {
margin-left: 250px;
}
}
</style>
</head>
<body>
<div class="loading">
<div>
<h1>Let's <span class="phonk">PHONK</span> !</h1>
<p> Loading the coding environment, wait a sec! :)</p>
<div class="progress_container">
<div class="progress"></div>
</div>
</div>
</div>
<app></app>
<link rel="icon" href="static/favicon.svg" type="image/svg+xml">
<script src="static/lib/ace-builds/src-noconflict/ace.js" type="text/javascript" charset="utf-8"></script>
<script src="static/lib/ace-builds/src-noconflict/ext-language_tools.js" type="text/javascript"
charset="utf-8"></script>
<!--
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i|Source+Sans+Pro:200,200i,300,300i,400,400i,600,600i,700,700i,900,900i" rel="stylesheet">
-->
<!-- built files will be auto injected -->
</body>
</html>