-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
127 lines (98 loc) · 4.48 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
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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Snoozer Options </title>
<link rel="icon" href="assets/icon.png">
<link rel="stylesheet" href="styles.css">
<script src="options.js"></script>
</head>
<body>
<div class="page">
<div class="container" id="container" style="width:280px; position: static;">
<div class="navbar">
<div class="iconwrappersmaller" class="no-select"> <img class="icon" id="backbutton"
src="assets/back.svg" draggable="false" class="no-select"></img> </div>
<div id="containergrabber"></div>
<div class="iconwrapper" id="snoozesite" class="no-select">
<a href="https://snoozer.app/" target="_blank">
<img class="icon" src="assets/icon_light.svg" draggable="false" class="no-select"> </img>
</a>
</div>
</div>
<img id="logo" src="./assets/snoozerlogo.svg" style="width:100%;" draggable="false" class="no-select">
</img>
<div class="center header2" style="margin-top:-24px; margin-bottom: 24px;">
OPTIONS
</div>
<div class="optionitem">
<div style="display: flex; flex-direction: row; width: 100%; justify-content:space-between">
<div>
<div class="header3">
QUIET
</div>
<div class="body1">
Mute jumpscares
</div>
</div>
<div style="height: 42px; width: 100%; position: relative; width: 80px; ">
<div id="quietcolor"
style="background-color: rgb(194, 210, 255); height: 100%; width: 100%; border-radius: 36px;">
<div id="quietbutton" class="round"
style="background-color: rgb(229, 196, 130); left: 0; width: 36px; height: 36px; margin: 3px; cursor: pointer">
</div>
</div>
</div>
</div>
</div>
<div class="optionitem">
<div class="header3">
TIMER
</div>
<div class="body1">
Duration (seconds) of sleep before the jumpscare is played
</div>
<div class="flexrow">
<div class="slidecontainer" style="width:85%">
<input type="range" min="5" max="30" value="10" class="slider" id="timerslider">
</div>
<div class="header2" style="margin-left:24px;margin-right:6px;font-weight:700;width:15%;text-align:right;" id="timer">
10
</div>
</div>
</div>
<div class="optionitem">
<div class="header3">
SENSITIVITY
</div>
<div class="body1">
Threshold of sleep detection
</div>
<div class="flexrow">
<div class="slidecontainer" style="width:85%">
<input type="range" min="1" max="10" value="4" class="slider" id="sensitivityslider">
</div>
<div class="header2" style="margin-left:24px;margin-right:6px;font-weight:700;width:15%;text-align: right;" id="sensitivity">
4
</div>
</div>
</div>
<div style="height: 48px; position: relative; width: 100%; cursor: pointer;">
<div class="round" style="background-color: rgb(119, 57, 255); bottom: 0">
</div>
<div id="snoozersitebutton" class="round"
style="background-color: rgb(229, 196, 130); top: 0; font-size: 20px;">
<a href="https://snoozer.app/" target="_blank" style="text-decoration:none; color: inherit; ">
<p class="header3 no-select">ABOUT</p>
</a>
</div>
</div>
<div class="center">
<div class=body2>
© 2024 Demi Hu
</div>
</div>
</div>
</div>
</body>
</html>