forked from whosmatt/uvmod
-
Notifications
You must be signed in to change notification settings - Fork 7
/
navbar.html
93 lines (79 loc) · 2.31 KB
/
navbar.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
<style>
@media (min-width: 768px) {
.wrapper {
display: flex;
}
.sidebar .sidebar-brand{
font-size: 2.5rem;
font-weight: 200;
padding: 0.5rem 1rem;
}
}
@media (max-width: 767px) {
.sidebar-brand {
font-size: 2.5rem!important;
font-weight: 200!important;
padding: 0.5rem 0!important;
margin-right:auto!important;
}
.sidebar-divider {
display: none!important;
}
.sidebar-heading {
display: none!important;
}
.navbar-nav {
position: relative;
display: flex;
flex-wrap: wrap;
align-items: center;
padding: 0.5rem 1rem;
flex-flow: row wrap;
}
.sidebar {
width: 100%;
min-height: auto;
background-image: none;
}
}
</style>
<nav>
<ul class="navbar-nav bg-gradient-dark sidebar sidebar-dark accordion fade-in-from-left sticky-top" id="accordionSidebar">
<!-- Sidebar - Brand -->
<a onclick="easterEgg()" class="sidebar-brand d-flex align-items-center justify-content-center">
<div class="sidebar-brand mx-3" style="text-shadow: 0px 0px 5px #ffffffa6;">UVMOD</div>
</a>
<!-- Divider -->
<hr class="sidebar-divider">
<!-- Heading -->
<div class="sidebar-heading">
Original Firmware
</div>
<!-- Nav Item - Patcher -->
<li class="nav-item">
<a class="nav-link" href="index.html">
<i class="fas fa-fw fa-wrench"></i>
<span>Patcher/Flasher</span></a>
</li>
<!-- Nav Item - CPS -->
<li class="nav-item">
<a class="nav-link" href="configurator.html">
<i class="fas fa-fw fa-cog"></i>
<span>Configurator (WIP)</span></a>
</li>
<!-- Divider -->
<hr class="sidebar-divider">
<!-- Heading -->
<div class="sidebar-heading">
Open Source
</div>
<!-- Nav Item - cfw Flasher -->
<li class="nav-item">
<a class="nav-link disabled" href="osfw.html">
<i class="fas fa-cloud-download-alt"></i>
<span>Flasher (WIP)</span></a>
</li>
<!-- Divider -->
<hr class="sidebar-divider d-none d-md-block">
</ul>
</nav>