-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
113 lines (97 loc) · 5.5 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
<!DOCTYPE html>
<!-- vscode dev tryout -->
<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" ; viewport-fit="cover">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<!-- possible content values: default, black or black-translucent -->
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<!-- google fonts link -->
<link href='https://fonts.googleapis.com/css?family=Permanent Marker' rel='stylesheet'>
<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=Smooch&display=swap" rel="stylesheet">
<!-- bootstrap -------------------------------------------------------- -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-QJHtvGhmr9XOIpI6YVutG+2QOK9T+ZnN4kzFN1RtK3zEFEIsxhlmWl5/YESvpZ13" crossorigin="anonymous">
</script>
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous">
</script>
<!-- fontawesome icon bootstrap -->
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/fontawesome.min.css"
integrity="sha384-jLKHWM3JRmfMU0A5x5AkjWkw/EYfGUAGagvnfryNV3F9VqM98XiIH7VBGVoxVSc7" crossorigin="anonymous">
<!-- vue -->
<script src="https://unpkg.com/vue@next"></script>
<!-- my style sheet link -->
<link rel="stylesheet" href="style.css">
<title>MyApp</title>
</head>
<body>
<div id="app" class="">
<div>
<div class="navbar navbar-dark bg-dark absalute text-light">
<div class="container">
<a href="#" class="navbar-brand shadow" style="font-family: 'Smooch', cursive; font-size:x-large;">
my App</a>
<div>
<i class="bi bi-caret-down"></i>
</div>
<div class="float-end position-relative">
<div class="btn text-light " :class="[navshow? 'btn-outline-secondary':'' ]"
@click="navshow =!navshow">
<svg v-show="!navshow" xmlns="http://www.w3.org/2000/svg" width="16" height="16"
fill="currentColor" class="bi bi-chevron-compact-down" viewBox="0 0 16 16">
<path fill-rule="evenodd"
d="M1.553 6.776a.5.5 0 0 1 .67-.223L8 9.44l5.776-2.888a.5.5 0 1 1 .448.894l-6 3a.5.5 0 0 1-.448 0l-6-3a.5.5 0 0 1-.223-.67z" />
</svg><svg v-show="navshow" xmlns="http://www.w3.org/2000/svg" width="16" height="16"
fill="currentColor" class="bi bi-chevron-compact-up" viewBox="0 0 16 16">
<path fill-rule="evenodd"
d="M7.776 5.553a.5.5 0 0 1 .448 0l6 3a.5.5 0 1 1-.448.894L8 6.56 2.224 9.447a.5.5 0 1 1-.448-.894l6-3z" />
</svg>
</div>
<div class="container">
<div class=" d-flex flex-column float-end justify-content-around small card nav-dropdown "
v-if="navshow">
<div v-for="(link,i) in dashLinks" class=" ">
<a class="text-decoration-none " :href="link.link">
<div class="py-2 link-dark px-4 bg-light">
{{link.label}}
</div>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container mt-4" @click="navshow=false">
<h2>Dashboard</h2>
<div class="mt-5 main d-flex flex-wrap align-self-start justify-content-around text-center">
<div class="card m-2 mb-4 w-auto dashcard">
<div class="card-header p-0">hello</div>
<div class="card-body text-start">
<h3>title</h3>
<p> thos is tha boddy</p>
</div>
</div>
<div class="card m-2 mb-4 w-auto dashcard">
<div class="card-header p-0">hello</div>
<div class="card-body text-start">
<h3>title</h3>
<p> thos is tha boddy aasdf adsfasd</p>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>