-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
62 lines (62 loc) · 1.52 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<h1>
BETTER GEODE
</h1>
<label for="bginput" style="flex-direction: column; gap: 15px;">
<span>BACKGROUND IMAGE</span>
<input style="width: 80%;" type="text" id="bginput">
</label>
<label for="projinput">
FORCE PROJECTS WINDOW ON STARTUP
<input type="checkbox" id="projinput">
</label>
<label for="blurinput">
BLUR INTENSITY
<input type="range" id="blurinput" min="0" max="40" value="8">
<span id="blurinputtext">8</span>px
</label>
<label for="winbginput">
WINDOW COLOR
<input type="color" id="winbginput">
</label>
<label for="alpha">
WINDOW OPACITY
<input type="range" id="alpha" min="0" max="1" step="0.01" value="0.8">
<span id="alphainputtext">80</span>%
</label>
<label>
<button id="exportButton">
EXPORT PRESET
</button>
<button id="importButton">
IMPORT PRESET
</button>
</label>
<h2>
RELOAD TO APPLY CHANGES!
</h2>
<h3>
CONTRIBUTORS
<a href="https://github.com/saboooor">
- saboooor
</a>
<a href="https://github.com/Oli-idk">
- Oli-idk
</a>
<a href="https://github.com/leonm-cloud">
- leonm-cloud
</a>
</h3>
<h3>
<a href="https://github.com/AkiraDevelopment">
AKIRADEVELOPMENT
</a>
</h3>
<script src="bettergeode.js" type="module"></script>
</body>
</html>