-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
249 lines (226 loc) · 7.19 KB
/
home.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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
<!-- <html>
<head>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div id="header">
<h1>SafeID</h1>
<hr class="darkcomponent">
</div>
<div id = "page links">
<a href="id.html">ID Page</a>
<a href="id.html">Create a new Page Link</a>
<a href="id.html">Create a new Page Link</a>
<a href="id.html">Create a new Page Link</a>
</div>
<div id="loc-lang" class="darkcomponent">
<h2>Location</h2>
<h3 class="placeholder">loc</h3>
<h2>Language</h2>
<h3 class="placeholder">lang</h3>
</div>
<div id="edit-trip">
<img src="imgs/Trip-Info-Dark.png" class="icon"/>
<h2>Edit My Trip</h2>
</div>
<br/>
<div id="rest-ID">
<img src="imgs/Rest-ID-Turquoise.png" class="icon" />
<img src="imgs/Rest-ID-Red.png" class="icon" />
<h2>View My Restaurant ID</h2>
</div>
<br/>
<div id="med-ID">
<img src="imgs/Med-ID-Red.png" class="icon" />
<h2>View My Full Medical ID</h2>
</div>
<br/>
<div id="get-help">
<img src="imgs/Phone-Dark.png" class="icon" />
<h2>Get Help</h2>
<h3>9-1-1 in this country:</h3>
</div>
<br/>
<div id="nav-bar">
<hr/>
<img src="imgs/My-Info-Dark.png" class="icon" />
<img src="imgs/My-Info-Red.png" class="icon" />
<p class="bottom-text">My Info</p>
<img src="imgs/Home-Dark.png" class="icon" />
<img src="imgs/Home-Red.png" class="icon" />
<p class="bottom-text">Home</p>
<img src="imgs/More-Menu-Dark.png" class="icon" />
<img src="imgs/More-Menu-Red.png" class="icon" />
<p class="bottom-text">More</p>
</div>
</body>
</html> -->
<!DOCTYPE html>
<html>
<head>
<title>SafeID</title>
<style>
body {
margin: 0;
padding: 0;
font-family: 'Arial', sans-serif;
background-color: #f4f4f4; /* Reverted back to the light background */
overflow: hidden;
}
.phone-container {
width: 350px;
height: 700px;
border: 1px solid #ccc;
border-radius: 10px;
/* background-color: #003366; Consistent with phone screen background */
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
position: fixed;
top: 20px;
left: 20px;
overflow: auto;
color: #fff; /* White text color for better contrast */
}
.header {
background-color: #007bff;
color: #fff;
padding: 1px;
text-align: left;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
font-size: 18px;
padding-left: 10px;
}
.menu-item {
display: flex;
align-items: center;
padding: 15px;
margin: 10px;
border-radius: 15px; /* Rounded corners like app tiles */
background-color: #66b2ff; /* Much lighter blue for the tiles */
color: #fff;
transition: background-color 0.3s;
box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Subtle shadow for depth */
}
.menu-item:hover {
background-color: #579ecc; /* Slightly darker on hover */
}
.menu-item img {
width: 24px;
height: 24px;
margin-right: 10px;
}
.dropdown-container {
padding: 15px;
/* background-color: #003366; Consistent with phone screen background */
}
.dropdown {
margin-bottom: 10px;
padding: 10px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 5px;
cursor: pointer;
outline: none;
width: calc(100% - 30px); /* Adjust width considering padding */
box-sizing: border-box;
background-color: #fff; /* White dropdown background */
color: #000; /* Black dropdown text */
}
.bottom-menu {
position: absolute;
bottom: 0;
width: 100%;
background-color: #007bff;
color: #fff;
display: flex;
justify-content: space-around;
padding: 10px 0;
}
.bottom-menu img {
filter: invert(100%);
width: 30px;
height: 30px;
}
.bottom-menu p {
margin: 0;
font-size: 14px;
}
a:link {
color: white;
background-color: transparent;
text-decoration: none;
}
a:active {
color: white;
background-color: transparent;
text-decoration: underline;
}
a:visited {
color: white;
background-color: transparent;
text-decoration: none;
}
a:hover {
color: red;
background-color: transparent;
text-decoration: underline;
}
</style>
</head>
<body>
<div class="phone-container">
<div class="header">
<h1>safeID</h1>
</div>
<!-- Dropdowns for Region and Language -->
<div class="dropdown-container">
<select class="dropdown" id="region-dropdown">
<option value="">Select Region</option>
<option value="europe">Europe</option>
<option value="asia">Asia</option>
<option value="americas">Americas</option>
<option value="africa">Africa</option>
<option value="oceania">Oceania</option>
</select>
<select class="dropdown" id="language-dropdown">
<option value="">Select Language</option>
<option value="english">English</option>
<option value="spanish">Spanish</option>
<option value="french">French</option>
<option value="german">German</option>
<option value="chinese">Chinese</option>
</select>
</div>
<div class="menu-item">
<img src="imgs/Trip-Info-Dark.ico" />
<span><a href = "my-info.html">Edit Cards</a></span>
</div>
<div class="menu-item">
<img src="imgs/Rest-ID-Turquoise.ico" />
<span><a href = "restaurantid.html">View My Restaurant ID</a></span>
</div>
<div class="menu-item">
<img src="imgs/Med-ID-Red.ico" />
<span>Full Medical ID</span>
</div>
<div class="menu-item">
<img src="imgs/Phone-Dark.ico" />
<span>Get Help</span>
</div>
<div class="bottom-menu">
<div>
<img src="imgs/My-Info-Dark.ico" />
<span><a href = "my-info.html">My Info</a></span>
</div>
<div>
<img src="imgs/Home-Dark.ico" />
<p>Home</p>
</div>
<div>
<img src="imgs/More-Menu-Dark.ico" />
<p>More</p>
</div>
</div>
</div>
</body>
</html>