-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
160 lines (123 loc) · 6.02 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
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JW Chrono</title>
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<!-- -*-*-*-*-*-*-*-*-*-*-* -->
<!-- Font Awesome -->
<script src="https://kit.fontawesome.com/23a9919148.js" crossorigin="anonymous"></script>
<!-- -*-*-*-*-*-*-*-* -->
<link rel="stylesheet" href="public/Styles/main-style.css">
</head>
<body>
<!-- Modals-Dialogs -->
<section id="modal-section" class="modal-section-hidden">
<div id="select-watch-dialog" class="modal modal-hidden">
<h2 class="modal-title">
Select a watch
</h2>
<div class="modal-form">
<form>
<label for="select-watch-country-cbb">Country:</label>
<select name="select-watch-country-cbb">
<option value="0">United State</option>
</select>
<label for="select-watch-timezone-cbb">TimeZone:</label>
<select name="select-watch-timezone-cbb">
<option value="0">the Idaho panhandle and most of nevada and oregon</option>
</select>
<div class="select-watch-buttons-section">
<button>Add</button>
<button>Cancel</button>
</div>
</form>
</div>
</div>
</section>
<!-- -*-*-*-*-*-*-*-* -->
<div id="page-container">
<div id="watch-page">
<header>
<h1 id="page-title">
<a href="#">
<span>JW</span> Chrono
</a>
</h1>
</header>
<div id="watch-page-content">
<div id="watch-container">
<div id="watch">
<p>
The current time in <span class="watch-location">the Idaho panhandle and most of Nevada and Oregon, United State</span> is <br>
<span>Sunday, 2 of January of 2022</span> (Not Sync).
</p>
<p id="clock-displayer" class="clock">23:47:01</p>
</div>
</div>
<button id="add-watch-button">
<i class="fas fa-plus"></i>
</button>
</div>
<div id="next-page-btn" class="next-page-button">
<div class="first-corner"></div>
<div class="trapezoid-shape">
<i class="fas fa-chevron-down arrow-icon"></i>
</div>
<div class="last-corner"></div>
</div>
</div>
<div id="watch-vault-page">
<h2 id="watch-vault-page-title">Your watchs</h2>
<section id="watchs-vault">
<div class="watch-card">
<div class="watch-card-title">
<i class="watch-card-title-icon fas fa-clock"></i>
<h2 class="watch-card-title-text">temporizador numero 1: chocolate</h2>
</div>
<p class="watch-card-clock">2 month and 26 days</p>
<button class="watch-card-button">
<div class="watch-card-button-circle"></div>
<div class="watch-card-button-circle"></div>
<div class="watch-card-button-circle"></div>
</button>
</div>
<div class="watch-card">
<div class="watch-card-title">
<i class="watch-card-title-icon fas fa-clock"></i>
<h2 class="watch-card-title-text">temporizador numero 2: with a very long name</h2>
</div>
<p class="watch-card-clock">2 month and 26 days</p>
<button class="watch-card-button">
<div class="watch-card-button-circle"></div>
<div class="watch-card-button-circle"></div>
<div class="watch-card-button-circle"></div>
</button>
</div>
<div class="watch-card">
<div class="watch-card-title">
<i class="watch-card-title-icon fas fa-clock"></i>
<h2 class="watch-card-title-text">temporizador numero 3: harina</h2>
</div>
<p class="watch-card-clock">2 month and 26 days</p>
<button class="watch-card-button">
<div class="watch-card-button-circle"></div>
<div class="watch-card-button-circle"></div>
<div class="watch-card-button-circle"></div>
</button>
</div>
</section>
<div class="free-space" style="height: 150px;"></div>
</div>
<button id="add-watch-vault-button" class="add-watch-vault-button-hidden">
<i class="fas fa-plus"></i>
</button>
</div>
</body>
<script src="public/Scripts/index.js"></script>
</html>