-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenu-nav.html
More file actions
160 lines (132 loc) · 6.88 KB
/
Copy pathmenu-nav.html
File metadata and controls
160 lines (132 loc) · 6.88 KB
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>404 Page Template</title>
<!-- MDI Icons -->
<link rel="stylesheet" href="https://cdn.materialdesignicons.com/6.5.95/css/materialdesignicons.min.css">
<!-- Tailwind -->
<script src="https://cdn-tailwindcss.vercel.app/"></script>
</head>
<body>
<!-- Page Container -->
<div class="flex items-center justify-center min-h-screen bg-white py-48">
<div class="flex flex-col">
<!-- Notes -->
<span class="text-center font-bold my-10 opacity-30">
MDI (npm i @mdi/font) reuqired for all icons
<hr class="my-4">
<a href="https://egoistdeveloper.github.io/twcss-to-sass-playground/" target="_blank" class="text-blue-600">
Convetert to SASS
</a>
</span>
<!-- Continue With -->
<div class="flex flex-col mt-48">
<div class="text-gray-400 font-bold uppercase">
Continue With
</div>
<div class="flex flex-col items-stretch mt-5">
<!-- Nav Item #1 -->
<div class="flex flex-row group px-4 py-8
border-t hover:cursor-pointer
transition-all duration-200 delay-100">
<!-- Nav Icon -->
<div class="rounded-xl bg-blue-100 px-3 py-2 md:py-4">
<i class="mdi mdi-home-outline mx-auto
text-indigo-900 text-2xl md:text-3xl"></i>
</div>
<!-- Text -->
<div class="grow flex flex-col pl-5 pt-2">
<div class="font-bold text-sm md:text-lg lg:text-xl group-hover:underline">
Home Page
</div>
<div class="font-semibold text-sm md:text-md lg:text-lg
text-gray-400 group-hover:text-gray-500
transition-all duration-200 delay-100">
Everything starts here
</div>
</div>
<!-- Chevron -->
<i class="mdi mdi-chevron-right text-gray-400 mdi-24px my-auto pr-2
group-hover:text-gray-700 transition-all duration-200 delay-100"></i>
</div>
<!-- Nav Item #2 -->
<div class="flex flex-row group px-4 py-8
border-t hover:cursor-pointer
transition-all duration-200 delay-100">
<!-- Nav Icon -->
<div class="rounded-xl bg-blue-100 px-3 py-2 md:py-4">
<i class="mdi mdi-book-open-page-variant-outline mx-auto
text-indigo-800 text-2xl md:text-3xl"></i>
</div>
<!-- Text -->
<div class="grow flex flex-col pl-5 pt-2">
<div class="font-bold text-sm md:text-lg lg:text-xl group-hover:underline">
Blog
</div>
<div class="font-semibold text-sm md:text-md lg:text-lg
text-gray-400 group-hover:text-gray-500
transition-all duration-200 delay-100">
Read our awesome articles
</div>
</div>
<!-- Chevron -->
<i class="mdi mdi-chevron-right text-gray-400 mdi-24px my-auto pr-2
group-hover:text-gray-700 transition-all duration-200 delay-100"></i>
</div>
<!-- Nav Item #3 -->
<div class="flex flex-row group px-4 py-8
border-t hover:cursor-pointer
transition-all duration-200 delay-100">
<!-- Nav Icon -->
<div class="rounded-xl bg-blue-100 px-3 py-2 md:py-4">
<i class="mdi mdi-archive-settings-outline
mx-auto text-indigo-800 text-2xl md:text-3xl"></i>
</div>
<!-- Text -->
<div class="grow flex flex-col pl-5 pt-2">
<div class="font-bold text-sm md:text-lg lg:text-xl group-hover:underline">
Archive
</div>
<div class="font-semibold text-sm md:text-md lg:text-lg
text-gray-400 group-hover:text-gray-500
transition-all duration-200 delay-100">
Archived posts but still readable
</div>
</div>
<!-- Chevron -->
<i class="mdi mdi-chevron-right text-gray-400 mdi-24px my-auto pr-2
group-hover:text-gray-700 transition-all duration-200 delay-100"></i>
</div>
<!-- Nav Item #3 -->
<div class="flex flex-row group px-4 py-8
border-t hover:cursor-pointer
transition-all duration-200 delay-100">
<!-- Nav Icon -->
<div class="rounded-xl bg-blue-100 px-3 py-2 md:py-4">
<i class="mdi mdi-at mx-auto
text-indigo-800 text-2xl md:text-3xl"></i>
</div>
<!-- Text -->
<div class="grow flex flex-col pl-5 pt-2">
<div class="font-bold text-sm md:text-lg lg:text-xl group-hover:underline">
Contact
</div>
<div class="font-semibold text-sm md:text-md lg:text-lg
text-gray-400 group-hover:text-gray-500
transition-all duration-200 delay-100">
Contact us for your questions
</div>
</div>
<!-- Chevron -->
<i class="mdi mdi-chevron-right text-gray-400 mdi-24px my-auto pr-2
group-hover:text-gray-700 transition-all duration-200 delay-100"></i>
</div>
</div>
</div>
</div>
</div>
</body>
</html>