-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
90bea88
commit 99b97ff
Showing
10 changed files
with
23,462 additions
and
165 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap"); | ||
|
||
body, | ||
button { | ||
font-family: "Inter", sans-serif; | ||
} | ||
|
||
:root { | ||
--offcanvas-width: 270px; | ||
--topNavbarHeight: 0px; | ||
|
||
} | ||
|
||
.sidebar-nav { | ||
width: var(--offcanvas-width); | ||
|
||
} | ||
|
||
.sidebar-link { | ||
display: flex; | ||
align-items: center; | ||
} | ||
|
||
.sidebar-link .right-icon { | ||
display: inline-flex; | ||
} | ||
|
||
.sidebar-link[aria-expanded="true"] .right-icon { | ||
transform: rotate(180deg); | ||
} | ||
|
||
@media (min-width: 774px) { | ||
body { | ||
overflow: auto !important; | ||
} | ||
|
||
main { | ||
margin-left: var(--offcanvas-width); | ||
} | ||
|
||
/* this is to remove the backdrop */ | ||
.offcanvas-backdrop::before { | ||
display: none; | ||
} | ||
|
||
.sidebar-nav { | ||
-webkit-transform: none; | ||
transform: none; | ||
visibility: visible !important; | ||
height: calc(100% - var(--topNavbarHeight)); | ||
top: var(--topNavbarHeight); | ||
} | ||
} | ||
|
||
|
||
/* navbar */ | ||
.navbar { | ||
padding-top: .5rem; | ||
padding-bottom: .5rem; | ||
margin: 0; | ||
width: 100%; | ||
} | ||
|
||
.nav-link { | ||
padding: 11px; | ||
color: black !important; | ||
} | ||
|
||
|
||
.nav-link:hover { | ||
border-left: 5px solid #0a58ca; | ||
color:#0a58ca !important; | ||
} | ||
|
||
|
||
|
||
.active { | ||
border-left: 5px solid #0a58ca; | ||
color:#0a58ca !important; | ||
} | ||
|
||
.Adminname { | ||
display: none; | ||
} | ||
|
||
|
||
|
Oops, something went wrong.