forked from josephf123/BM-MK-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tagManage.html
69 lines (67 loc) · 2.89 KB
/
tagManage.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Tag management</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<!-- Popper JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<!-- For fonts -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<title>Document</title>
<style>
.stickyY {
position: fixed;
top: 0;
margin-left: 9px;
z-index: 1;
}
.stickyX {
position: fixed;
top: 0px;
z-index: 2;
margin-left: 9px;
}
.gridStickY {
padding: 60px;
}
</style>
</head>
<!-- #778899" -->
<!-- AED4E6 -->
<!-- 5BC0EB -->
<body style="min-width: 750px; background-color: #D3D3D3" id="why">
<script src="tagManager.js"></script>
<nav id="navBar" class="navbar navbar-expand-lg navbar-light bg-light">
<img style="height: 45px; padding-right: 10px;"src="images/BW@8x.png" alt="Logo">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item ">
<a class="nav-link" id="homePage" href="#">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item active">
<a class="nav-link" id="tagPage" href="#">Tag manager</a>
</li>
<li class="nav-item">
<a class="nav-link" id="optionsPage" href="#">Options</a>
</li>
</ul>
</div>
</nav>
<div id="grid" class="px-4 py-2" style="overflow-x: visible;">
<!-- <div id="showingTags" class="mb-2 p-2"style="background-color: cornflowerblue;">
<div class="d-inline-flex p-2" style="border-radius: 0.8em; background-color: cyan; font-size: x-large;">Hey there</div>
<div class="d-inline-flex p-2" style="border-radius: 0.8em; background-color: cyan; font-size: x-large;">Hey there</div>
<div class="d-inline-flex p-2" style="border-radius: 0.8em; background-color: cyan; font-size: x-large;">Hey there</div>
<div class="d-inline-flex p-2" style="border-radius: 0.8em; background-color: cyan; font-size: x-large;">Hey there</div>
</div> -->
</div>
</body>
</html>