Commit
·
4ef7530
1
Parent(s):
64f0af9
Update geometrydash/index.html
Browse files- geometrydash/index.html +1 -180
geometrydash/index.html
CHANGED
@@ -1,180 +1 @@
|
|
1 |
-
|
2 |
-
<html lang="en">
|
3 |
-
<head>
|
4 |
-
<meta charset="utf-8">
|
5 |
-
<meta name="viewport" content="width=device-width, initial-scale=1">
|
6 |
-
<title>Geometry Dash</title>
|
7 |
-
<style media="screen">
|
8 |
-
html, body {
|
9 |
-
height: 100%;
|
10 |
-
}
|
11 |
-
body {
|
12 |
-
margin: 0;
|
13 |
-
display: flex;
|
14 |
-
align-items: center;
|
15 |
-
justify-content: center;
|
16 |
-
background-color: black;
|
17 |
-
font-size: 0;
|
18 |
-
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
19 |
-
overflow: hidden;
|
20 |
-
}
|
21 |
-
#wrapper {
|
22 |
-
display: block;
|
23 |
-
width: 100vw;
|
24 |
-
height: 75vw;
|
25 |
-
position: relative;
|
26 |
-
}
|
27 |
-
#monitors {
|
28 |
-
position: absolute;
|
29 |
-
top: 0;
|
30 |
-
left: 0;
|
31 |
-
}
|
32 |
-
@media (min-aspect-ratio: 480/360) {
|
33 |
-
#wrapper {
|
34 |
-
height: 100vh;
|
35 |
-
width: 133.33333333333334vh;
|
36 |
-
}
|
37 |
-
}
|
38 |
-
#stage {
|
39 |
-
width: 100%;
|
40 |
-
height: 100%;
|
41 |
-
}
|
42 |
-
|
43 |
-
#loading-progress {
|
44 |
-
color: #0ff;
|
45 |
-
position: fixed;
|
46 |
-
bottom: 0;
|
47 |
-
left: 0;
|
48 |
-
font-size: 16px;
|
49 |
-
}
|
50 |
-
|
51 |
-
|
52 |
-
.monitor {
|
53 |
-
position: absolute;
|
54 |
-
background-color: rgba(0, 0, 0, 0.3);
|
55 |
-
border: 1px solid rgba(0, 0, 0, 0.2);
|
56 |
-
border-radius: 0.25rem;
|
57 |
-
font-size: 0.75rem;
|
58 |
-
overflow: hidden;
|
59 |
-
padding: 3px;
|
60 |
-
color: white;
|
61 |
-
white-space: pre;
|
62 |
-
}
|
63 |
-
.monitor-label {
|
64 |
-
margin: 0 5px;
|
65 |
-
font-weight: bold;
|
66 |
-
}
|
67 |
-
.monitor-value {
|
68 |
-
display: inline-block;
|
69 |
-
vertical-align: top;
|
70 |
-
min-width: 34px;
|
71 |
-
text-align: center;
|
72 |
-
border-radius: 0.25rem;
|
73 |
-
overflow: hidden;
|
74 |
-
text-overflow: ellipsis;
|
75 |
-
user-select: text;
|
76 |
-
transform: translateZ(0);
|
77 |
-
}
|
78 |
-
.default .monitor-value, .slider .monitor-value {
|
79 |
-
background-color: rgba(0, 0, 0, 0.5);
|
80 |
-
margin: 0 5px;
|
81 |
-
padding: 1px 3px;
|
82 |
-
}
|
83 |
-
.large {
|
84 |
-
background-color: rgba(0, 0, 0, 0.6);
|
85 |
-
padding: 0.1rem 0.25rem;
|
86 |
-
min-width: 3rem;
|
87 |
-
}
|
88 |
-
.large .monitor-label {
|
89 |
-
display: none;
|
90 |
-
}
|
91 |
-
.large .monitor-value {
|
92 |
-
font-size: 1rem;
|
93 |
-
width: 100%;
|
94 |
-
}
|
95 |
-
.list {
|
96 |
-
padding: 0;
|
97 |
-
overflow: auto;
|
98 |
-
overflow-x: hidden;
|
99 |
-
}
|
100 |
-
.list .monitor-label {
|
101 |
-
text-align: center;
|
102 |
-
padding: 3px;
|
103 |
-
width: 100%;
|
104 |
-
display: block;
|
105 |
-
margin: 0;
|
106 |
-
box-sizing: border-box;
|
107 |
-
white-space: pre-wrap;
|
108 |
-
}
|
109 |
-
.list .monitor-value {
|
110 |
-
display: block;
|
111 |
-
}
|
112 |
-
.row {
|
113 |
-
margin: 2px 5px;
|
114 |
-
transform: translateZ(0);
|
115 |
-
text-align: left;
|
116 |
-
border-radius: 0.25rem;
|
117 |
-
background-color: rgba(0, 0, 0, 0.5);
|
118 |
-
border: 1px solid rgba(0, 0, 0, 0.2);
|
119 |
-
height: 20px;
|
120 |
-
line-height: 20px;
|
121 |
-
padding: 0 5px;
|
122 |
-
overflow: hidden;
|
123 |
-
text-overflow: ellipsis;
|
124 |
-
}
|
125 |
-
|
126 |
-
.slider input {
|
127 |
-
display: block;
|
128 |
-
width: 100%;
|
129 |
-
transform: translateZ(0);
|
130 |
-
}
|
131 |
-
#asking-box {
|
132 |
-
display: none;
|
133 |
-
position: absolute;
|
134 |
-
left: 0;
|
135 |
-
bottom: 0;
|
136 |
-
right: 0;
|
137 |
-
background-color: rgba(33, 33, 33, 0.7);
|
138 |
-
}
|
139 |
-
.asking #asking-box {
|
140 |
-
display: block;
|
141 |
-
}
|
142 |
-
#question {
|
143 |
-
display: block;
|
144 |
-
margin: 0 10px;
|
145 |
-
margin-top: 10px;
|
146 |
-
font-size: 12px;
|
147 |
-
color: white;
|
148 |
-
}
|
149 |
-
#answer {
|
150 |
-
border: none;
|
151 |
-
background: none;
|
152 |
-
width: 100%;
|
153 |
-
font: inherit;
|
154 |
-
font-size: 16px;
|
155 |
-
color: white;
|
156 |
-
padding: 10px;
|
157 |
-
box-sizing: border-box;
|
158 |
-
}
|
159 |
-
#answer:focus {
|
160 |
-
outline: none;
|
161 |
-
}
|
162 |
-
</style>
|
163 |
-
</head>
|
164 |
-
<body>
|
165 |
-
<div id="wrapper">
|
166 |
-
<canvas id="stage"></canvas>
|
167 |
-
<div id="monitors"></div>
|
168 |
-
<div id="asking-box">
|
169 |
-
<label id="question" for="answer">Question</label>
|
170 |
-
<input type="text" id="answer">
|
171 |
-
</div>
|
172 |
-
</div>
|
173 |
-
|
174 |
-
|
175 |
-
<span id="loading-progress">...</span>
|
176 |
-
|
177 |
-
|
178 |
-
<script type="text/javascript" src="./gdash.js"></script>
|
179 |
-
</body>
|
180 |
-
</html>
|
|
|
1 |
+
<iframe src="https://google-opensocial.googleusercontent.com/gadgets/ifr?url=https://cdn.jsdelivr.net/gh/yrgen73/GDC@63283a72e20615405d3c8eeebb19b9bb8e5e9a9a/gdc.xml" style="border: none; width: 100%; height: 100%; margin: 0px;"></iframe>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|