-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCREDITS.html
More file actions
130 lines (123 loc) · 3.14 KB
/
CREDITS.html
File metadata and controls
130 lines (123 loc) · 3.14 KB
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
<style>
@font-face {
font-family: 'Pusab';
src: url('style/Pusab.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
#corner {
position: fixed;
width: 20vh;
height: 20vh;
top:80%;
left:0px;
}
#corner1 {
position: fixed;
width: 20vh;
height: 20vh;
top:80%;
left:90%;
transform: rotate(270deg);
}
#corner2 {
position: fixed;
width: 20vh;
height: 20vh;
top:0%;
left:0%;
transform: rotate(90deg);
}
#corner3 {
position: fixed;
width: 20vh;
height: 20vh;
top:0%;
left:90%;
transform: rotate(180deg);
}
body {
background-image: url("style/bggd.jpg");
position: fixed;
background-position-y: 20%
}
a {
color:gold;
text-decoration: none;
}
pre {
position: fixed;
font-family: 'Pusab';
color:white;
font-size:50pt;
-webkit-text-stroke-width: 2.9px;
text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.3);
-webkit-text-stroke-color: black;
}
div {
border-width: 2.5vh;
border-style: solid;
border-radius: 3vh;
background-color: #995533;
border-image: url('style/brownbox.png') 10% round;
text-align: left;
max-width: 100%;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
width: 135vh;
height: 82%;
margin-top: -0.25%;
font-family: 'Pusab';
color:white;
font-size:50pt;
-webkit-text-stroke-width: 2.9px;
text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.3);
-webkit-text-stroke-color: black;
}
#closewin {
position:fixed;
top: -1%;
left: -1%;
transform: translate(-50%,-50%);
width: 100px;
height: 100px;
z-index: 1000;
}#closewin:hover{cursor: pointer;}
#mod {
position:fixed;
width: 60px;
}
</style>
<title>GD Level Loader</title>
<link rel="icon" type="image/x-icon" href="style/communityCreditsBtn_001.png">
<!--- Whoops I accedentally found the ® symbol -->
<body style="background-color: blue;">
<img id="corner" src="style/corner.png">
<img id="corner1" src="style/corner.png">
<img id="corner2" src="style/corner.png">
<img id="corner3" src="style/corner.png">
<div class="brownBox">
<img id="closewin" onclick="closeit()" src="style/GJ_closeBtn_001.png">
<pre>
<a target="_blank" href="https://www.youtube.com/@RobTopGames"><img id="mod" src="style/modBadge_02_001.png"> RobTop</a>: ALL ASSETS
<a target="_blank" href="https://www.youtube.com/@OLIVER427">OLIVER427</a>: idk something
<a target="_blank" href="https://gdbrowser.com/u/blockhead66">Blockhead66</a>: Data Reader
and almost everything else
<p style="font-size: 10pt!important;-webkit-text-stroke-width: 0.7px;text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.3);-webkit-text-stroke-color: black;">NOT AN OFFICIAL GEOMETRY DASH PRODUCT. NOT APPROVED BY OR ASSOCIATED WITH ROBTOPGAMES</p>
</pre>
</div>
</body>
<script>
var closebtn = document.getElementById('closewin')
function closeit() {
closebtn.style.width = "110px";
closebtn.style.height = "110px";
setTimeout(() => {
closebtn.style.width = "100px";
closebtn.style.height = "100px";
document.location.href=('index.html');
}, 100);
}
</script>