-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
51 lines (51 loc) · 1.64 KB
/
options.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
<!DOCTYPE html>
<html>
<head>
<title>status.lol Bookmarklet - Options</title>
<link rel="stylesheet" href="https://cdn.cache.lol/css/style.css?v=2023-01-29">
</head>
<style>
.logotype {
font-family: 'VC Honey Black Banner';
}
body {
background: var(--gray-8) !important;
color: var(--gray-1) !important;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
main .container,
main .box {
background: var(--gray-9);
}
</style>
<main>
<div style="margin-bottom: .5em; font-size: 2em;" class="logotype">
<span class="blue-4-fg">status</span><span class="blue-7-fg">.</span><span class="blue-4-fg">lol Bookmarklet</span>
<img src="https://static.omg.lol/img/blue-prami.svg" style="width: 1.3em; margin-left: .2em; margin-bottom: -.3em;" alt="Prami">
</div>
<div class="flex">
<div class="box basis" style="--basis: 20em;">
<form>
<p>
<label for="address">omg.lol Address</label>
<input name="address" id="address" type="text" placeholder="foobar" spellcheck="false" autocapitalize="none" autocomplete="off">
</p>
<p>
<label for="emoji">Default Emoji</label>
<input name="emoji" id="emoji" type="text" placeholder="👀" spellcheck="false" autocapitalize="none" autocomplete="off">
</p>
<button type="button" class="blue-7-bg white-fg" id="saveButton">
<i class="fa-solid fa-floppy-disk"></i> Save
</button>
</form>
</div>
</div>
</main>
<script src="options.js"></script>
</body>
</html>