50 lines
No EOL
1.3 KiB
SCSS
50 lines
No EOL
1.3 KiB
SCSS
@import 'bootstrap/scss/functions';
|
|
@import 'bootstrap/scss/variables';
|
|
|
|
/* ==========================================================================
|
|
Navbar
|
|
========================================================================== */
|
|
|
|
.navbar-version {
|
|
font-size: 0.65em;
|
|
color: $navbar-dark-color;
|
|
}
|
|
|
|
.profile-image {
|
|
height: 1.75em;
|
|
width: 1.75em;
|
|
}
|
|
|
|
.navbar {
|
|
padding: 0.2rem 1rem;
|
|
|
|
a.nav-link {
|
|
font-weight: 400;
|
|
}
|
|
}
|
|
|
|
/* ==========================================================================
|
|
Logo styles
|
|
========================================================================== */
|
|
.logo-img {
|
|
height: 45px;
|
|
width: 200px;
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
background: url('/content/images/logo-nova-group-zero.svg') no-repeat center center;
|
|
background-size: contain;
|
|
}
|
|
|
|
/* ==========================================================================
|
|
Fix navbar to top
|
|
========================================================================== */
|
|
.navbar {
|
|
position: fixed; /* Fixes it at the top */
|
|
top: 0; /* Aligns it to the top */
|
|
left: 0; /* Ensures it starts from the left */
|
|
width: 100%; /* Full-width */
|
|
background-color: #333; /* Example background */
|
|
color: white;
|
|
padding: 10px 20px;
|
|
z-index: 1000; /* Ensures it stays above other elements */
|
|
} |