-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsettings.html
82 lines (73 loc) · 3.19 KB
/
settings.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
<html>
<head>
<meta charset="utf-8" />
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0, shrink-to-fit=no'>
<meta content='text/html; charset=utf-8' http-equiv='Content-Type'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>D-5:30 | General > Settings</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="./style.css" />
<meta name="author" content="Jack Guinane" />
<link id="favicon" rel="shortcut icon" type="image/png" href="./favicon.png">
<script src="script.js"></script>
</head>
<body>
<div id="content">
<style>
:root
{
--background: #C4DDC6;
--border: #DCEBDD;
--foreground: #000;
--foreground-color: rgb(93, 156, 114);
--star-color: rgb(93, 156, 114);
}
</style>
<div class="target bottom" onclick="if(window.location.href.indexOf('?=') < 0){gotoPage('/drama.html','bottom');}else{gotoPage('/' + window.location.href.substring(window.location.href.indexOf('?=') + 2) + '.html','bottom');}">
<div id="border-bottom" class="border bottom">
<div>Back</div>
</div>
</div>
<div style="height: calc(50% - 270px)"></div>
<div class="setting-container">
<div onclick="decreaseBrightness()" class="setting-option">
<i class="material-icons material-icons--round">
brightness_2
</i>
</div>
<div class="setting-title">Brightness</div>
<div onclick="increaseBrightness()" class="setting-option">
<i class="material-icons material-icons--round">
brightness_5
</i>
</div>
</div>
<div style="height: 140px"></div>
<div class="setting-container">
<div onclick="volDown()" class="setting-option">
<i class="material-icons material-icons--round">
volume_down
</i>
</div>
<div class="setting-title">Volume</div>
<div onclick="volUp()" class="setting-option">
<i class="material-icons material-icons--round">
volume_up
</i>
</div>
</div>
</div> <!-- end of content -->
<div id="brightness"></div>
<div id="calibrator">
<div class="cali-bttn"></div>
<div class="cali-bttn"></div>
<div class="cali-bttn"></div>
<div class="cali-bttn"></div>
<div class="cali-bttn"></div>
<div class="cali-bttn"></div>
<div class="cali-bttn"></div>
<div class="cali-bttn"></div>
<div class="cali-bttn"></div>
</div>
</body>
</html>