-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (73 loc) · 2.44 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
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<title>Momentum</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="owfont-regular.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="header">
<button class="arrow-button">‹</button>
<div class="time-board">
<time datetime="2020-10-24" class="time hxl">09:42:56</time>
<time datetime="2020-10-24" class="date">Wednesday 27 Jan. 2021</time>
</div>
<button class="arrow-button">›</button>
</header>
<main class="main">
<div class="greeting-board">
<div class="greeting">Good morning</div>
<div spellcheck="false" contenteditable class="name">World!</div>
</div>
<div class="focus-board">
<span class="title">What Is Your Focus For Today?</span>
<span spellcheck="false" contenteditable class="focus">FOCUS</span>
</div>
<div class="weather-board">
<table>
<tbody>
<tr>
<td rowspan="3" class="gradient-font weather-icon owf"></td>
<td spellcheck="false" contenteditable class="location hxl"></td>
<td class="deg temperature gradient-font" rowspan="2"></td>
</tr>
<tr>
<td class="humidity"></td>
</tr>
<tr>
<td class="wind-speed"></td>
<td class="gradient-text weather-description"></td>
</tr>
</tbody>
</table>
</div>
</main>
<div class="settings"><button>
<img src="svg/setting.svg" alt="">
</button></div>
<div class="set-theme">
<ul>
<li class="set-theme-title">Change Theme</li>
<li class="variant-set-theme la">LosAngeles2019</li>
<li class="variant-set-theme earth">Earth</li>
<li class="variant-set-theme valley">MonumentValley</li>
<br>
<li class="settings-btns">
<button class="gradient gray-or-color-btn" title="Gradient">
<img src="svg/gradient.svg" alt="">
</button>
<button class="reset" title="Reset">
<img src="svg/reset.svg" alt="">
</button>
<button class="gray-or-color-btn" title="Contrast"><img class="gray-or-color" src="svg/contrast.svg" alt="gray or color"></button>
<button class="close-set-theme close" title="Close"><img src="svg/close.svg" alt="close" class="close"></button>
</li>
</ul>
</div>
<div class="curtain"></div>
<script src="preload.js"></script>
<script src="main.js"></script>
</body>
</html>