Update
This commit is contained in:
parent
52e725d62c
commit
12498358a2
Binary file not shown.
|
@ -0,0 +1,62 @@
|
|||
@media (min-width: 992px) {
|
||||
.navbar-expand-lg .navbar-toggler {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.navbar-toggler {
|
||||
padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
|
||||
font-size: var(--bs-navbar-toggler-font-size);
|
||||
line-height: 1;
|
||||
color: var(--bs-navbar-color);
|
||||
background-color: transparent;
|
||||
border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
|
||||
border-radius: var(--bs-navbar-toggler-border-radius);
|
||||
transition: var(--bs-navbar-toggler-transition);
|
||||
}
|
||||
|
||||
.navbar-toggler-icon {
|
||||
display: inline-block;
|
||||
width: 1.5em;
|
||||
height: 1.5em;
|
||||
vertical-align: middle;
|
||||
background-image: var(--bs-navbar-toggler-icon-bg);
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
background-size: 100%;
|
||||
}
|
||||
|
||||
.navbar-dark {
|
||||
--bs-navbar-color: rgba(255, 255, 255, 0.55);
|
||||
--bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
|
||||
--bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
|
||||
--bs-navbar-active-color: #fff;
|
||||
--bs-navbar-brand-color: #fff;
|
||||
--bs-navbar-brand-hover-color: #fff;
|
||||
--bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
|
||||
--bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
|
||||
}
|
||||
|
||||
.navbar {
|
||||
--bs-navbar-padding-x: 0;
|
||||
--bs-navbar-padding-y: 0.5rem;
|
||||
--bs-navbar-color: rgba(0, 0, 0, 0.55);
|
||||
--bs-navbar-hover-color: rgba(0, 0, 0, 0.7);
|
||||
--bs-navbar-disabled-color: rgba(0, 0, 0, 0.3);
|
||||
--bs-navbar-active-color: rgba(0, 0, 0, 0.9);
|
||||
--bs-navbar-brand-padding-y: 0.3125rem;
|
||||
--bs-navbar-brand-margin-end: 1rem;
|
||||
--bs-navbar-brand-font-size: 1.25rem;
|
||||
--bs-navbar-brand-color: rgba(0, 0, 0, 0.9);
|
||||
--bs-navbar-brand-hover-color: rgba(0, 0, 0, 0.9);
|
||||
--bs-navbar-nav-link-padding-x: 0.5rem;
|
||||
--bs-navbar-toggler-padding-y: 0.25rem;
|
||||
--bs-navbar-toggler-padding-x: 0.75rem;
|
||||
--bs-navbar-toggler-font-size: 1.25rem;
|
||||
--bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
|
||||
--bs-navbar-toggler-border-color: rgba(0, 0, 0, 0.1);
|
||||
--bs-navbar-toggler-border-radius: 0.375rem;
|
||||
--bs-navbar-toggler-focus-width: 0.25rem;
|
||||
--bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
|
||||
}
|
||||
|
|
@ -35,6 +35,7 @@
|
|||
<link rel="stylesheet" href="node_modules/@fortawesome/fontawesome-free/css/all.min.css">
|
||||
|
||||
<!-- Custom styles for this template -->
|
||||
<link href="assets/css/navbar.css" rel="stylesheet">
|
||||
<link href="assets/css/carousel.css" rel="stylesheet">
|
||||
<link href="assets/css/blog.css" rel="stylesheet">
|
||||
<link href="assets/css/style.css" rel="stylesheet">
|
||||
|
|
Loading…
Reference in New Issue