Skip to content

Commit

Permalink
Theme for Mons - burger
Browse files Browse the repository at this point in the history
  • Loading branch information
jerhero committed Dec 4, 2024
1 parent 521d701 commit 6db75a1
Showing 1 changed file with 34 additions and 1 deletion.
35 changes: 34 additions & 1 deletion mons/src/scss/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,14 @@ body {
a {
width: 40px;
height: 40px;
background: transparent;
background: #000;
border: solid 2px #fff;
transition: all 0.3s ease;

&:hover {
background: $primary-red;
border: solid 2px $primary-red;
}
}

@media screen and (max-width: 992px) {
Expand Down Expand Up @@ -970,3 +975,31 @@ footer #container-section-noussuivre {
}
}
}

.r-search-container .r-search.search-bar-filter input {
margin: 0 !important;
}

//navbar
.navbar-toggler {
padding: 0 !important;
background: #000 !important;
height: 40px !important;
width: 40px !important;
border-radius: 50% !important;
font-size: var(--bs-navbar-toggler-font-size);
line-height: 1;
color: var(--bs-navbar-color);
background-color: transparent;
transition: var(--bs-navbar-toggler-transition);
border: 2px solid #fff;

&:hover {
background: $primary-red !important;
border: 2px solid $primary-red;
}
}

.navbar .container {
padding: 0;
}

0 comments on commit 6db75a1

Please sign in to comment.