This repository has been archived by the owner on May 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathmenu.html
81 lines (74 loc) · 2.12 KB
/
menu.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<!-- Bootstrap -->
<link
rel="stylesheet"
type="text/css"
href="bootstrap/css/bootstrap.min.css"
/>
<!-- FontAwesome -->
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.0.6/css/all.css"
/>
<!-- TC-stylesheet -->
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link rel="icon" href="./img/clock64.png" />
<title>TC - Menu</title>
</head>
<body>
<div class="tc-container py-5">
<!-- FontAwesome menu button -->
<!-- menu pop up modal -->
<nav id="menu" class="modal-overlay">
<div class="tc-bg-blue modal-box">
<!-- FontAwesome back button -->
<div class="p-3 w-100 text-left">
<button type="button" class="tc-nav">
<a href="collect.html" class="fa fa-arrow-left tc-white"></a>
</button>
</div>
<!-- Users full name and address -->
<div class="text-center mb-3">
<i class="fa fa-user-circle mb-3 tc-white display-4"></i>
<h3>John Doe</h3>
<p class="tc-white">San Francisco, CA</p>
</div>
<ul class="tc-menu-list w-100 m-0 px-0 py-4 tc-bg-light-grey text-center">
<li class="mb-3">
<a class="tc-link" href="#">Collect</a>
</li>
<li class="mb-3">
<a class="tc-link" href="#">Overview</a>
</li>
<li class="mb-3">
<a class="tc-link" href="#">Projects</a>
</li>
<li class="mb-3">
<a class="tc-link" href="#">Archive</a>
</li>
<li>
<a class="tc-link" href="#">Settings</a>
</li>
</ul>
<div class="mt-auto w-100 text-center">
<button
id="mt-auto w-100 text-cente tc-register-btn"
class="
btn btn-block
rounded-0
py-3
text-uppercase
tc-blue tc-bg-faded-blue
"
>
Log Out
</button>
</div>
</div>
</body>
</html>