forked from sadparadiseinhell/null
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
83 lines (78 loc) · 2.5 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="us">
<head>
<title>null</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="icon" href="bookmark.png">
<base target="_blank">
</head>
<body>
<div class="sidebar-wrapper">
<div class="sidebar">
<div class="buttons">
<input type="checkbox" id="chb_theme">
<label class="btn_theme" for="chb_theme"></label>
<input type="checkbox" id="chb_header">
<label class="btn_header" for="chb_header"></label>
<input type="checkbox" id="chb_menu">
<label class="btn_menu" for="chb_menu"></label>
</div>
<div class="sidebar__settings">
<h3>Weather</h3>
<h4>API</h4>
<input class="sidebar__input" type="text" placeholder="Enter key" id="key" autocomplete="off">
<h4>City</h4>
<input class="sidebar__input" type="text" placeholder="Enter city" id="city">
<div class="sidebar__radio">
<label class="control control-radio">
°C
<input type="radio" name="temp_unit" id="celsius">
<div class="control__indicator"></div>
</label>
<label class="control control-radio">
°F
<input type="radio" name="temp_unit" id="fahrenheit">
<div class="control__indicator"></div>
</label>
</div>
<button class="sidebar__button" id="weather_apply">Apply</button>
</div>
<div class="sidebar__settings">
<h3>Greeting</h3>
<h4>Name</h4>
<input class="sidebar__input" type="text" id="greeting_name" name="name_field">
<button class="sidebar__button" id="name_apply">Apply</button>
</div>
<div class="sidebar__settings">
<h3>Theme</h3>
<h4>Background</h4>
<input type="color" id="bg_input">
<h4>Foreground</h4>
<input type="color" id="fg_input">
<h4>Accent</h4>
<input type="color" id="accent_input">
<div class="sidebar__button-container">
<button class="sidebar__button" id="color_apply">Apply</button>
<button class="sidebar__button" id="color_reset">Reset</button>
</div>
</div>
</div>
</div>
<div class="container">
<div class="header">
<h1 class="header__greeting">Howdy, <span class="header__greeting-name">Anon</span>.</h1>
<div class="header__weather">
<p id="header__weather-alert"></p>
<p id="header__weather-info"></p>
</div>
</div>
<div class="main"> </div>
</div>
<script src="js/theme.js"></script>
<script src="js/greeting.js"></script>
<script src="js/weather.js"></script>
<script src="js/menu.js"></script>
<script src="js/header.js"></script>
</body>
</html>