-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlightsettings.html
40 lines (40 loc) · 1.19 KB
/
lightsettings.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
<!DOCTYPE html>
<html>
<head>
<title>Smart Fridge</title>
<link rel="stylesheet" href="style/mainstyle.css" />
<link rel="stylesheet" href="style/settingsstyle.css" />
<meta charset="UTF-8">
</head>
<body>
<div id="headerBar">
<span id="header" style="font-size:63px">Lichteinstellungen</span>
<a href="messages.html">
<img src="pics/brief.svg" id="messagesIcon"/>
</a>
<a href="index.html">
<img src="pics/home.svg" id="homeIcon"/>
</a>
<a href="settings.html">
<img src="pics/zahnrad.svg" id="settingsIcon"/>
</a>
</div>
<div class="setting" style="top:10%">
<span class="settingText">Nachtmodus</span>
<span class="option"><span class="slider"></span></span>
</div>
<div class="setting" style="top:20%">
<span class="settingText">Farbe</span>
<span class="settingValue">Farbe wählen...<div class="colorBox"></div></span>
</div>
<div class="setting" style="top:30%">
<span class="settingText" style="top:30%">Helligkeit</span>
<span class="inputBox"><input type="text" class="textInput" value="100%"/></span>
</div>
<div id="footerBar">
<a href="settings.html">
<span id="back">Zurück</span>
</a>
</div>
</body>
</html>