blob: c6ca35fd40c333d54ea02690cbbc6b6c15f3452d [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
html {
// Prevents scrolling to point in page under the nav
scroll-padding-top: 80px;
@media (max-width: 1200px) {
scroll-padding-top: 8px;
}
}
.navbar {
font-style: normal;
background-color: var(--navbar-background-colour);
position: fixed;
width: 100%;
-webkit-box-shadow: 0px 0px 68px -13px rgba(0,0,0,0.78);
-moz-box-shadow: 0px 0px 68px -13px rgba(0,0,0,0.78);
box-shadow: 0px 0px 68px -13px rgba(0,0,0,0.78);
z-index: 100;
@media (max-width: 1200px) {
position: inherit;
}
a:hover, a:visited, a:hover:visited, a i, #book-search-results li, #book-search-results li a {
text-decoration: none;
color: var(--navbar-dropdown-hover-text-color);
}
a.dropdown-item, #book-search-results li, #book-search-results li a {
&:hover, &:visited {
background-color: var(--navbar-dropdown-hover-background-color);
}
}
div.container-fluid {
padding: 0;
}
.collapsing {
-webkit-transition: none;
transition: none;
display: none;
}
.navbar-brand {
display: flex;
margin: auto auto auto 20px;
align-items: center;
height: 72px;
span {
color: var(--navbar-text-color);
margin-left: 20px;
margin-right: 40px;
}
}
.navbar-collapse {
height: 100%;
width: 100%;
&.collapse .nav-item {
padding: 0;
}
a.nav-link {
transition: none;
white-space: nowrap;
}
.book-search {
margin: 10px 25px;
width: 100%;
display: flex;
flex-direction: row;
justify-content: flex-end;
.search-bar {
width: 100%;
min-width: 150px;
max-width: 250px;
border-bottom: white solid 1px;
input, input:focus, input:active {
color: white;
background-color: black;
outline: none;
border: none;
border-radius: 0px;
box-shadow: none;
&::placeholder {
color: var(--navbar-text-color);
}
}
i {
content: "\f002";
font-size: 18px;
margin: auto;
display: inline-block;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
&.search {
display: inherit;
}
&.spinner {
display: none;
}
}
}
&:has(input[required]) {
.search-bar {
.search {
display: none;
}
.spinner {
display: inherit;
}
}
}
.book-search-spinner {
padding-left: 10px;
animation: none;
position: inherit;
margin: auto;
padding-bottom: 1px;
height: inherit;
width: 18px;
border: none;
}
@media (max-width: 1200px) {
justify-content: center;
padding: 25px 40px;
margin: 0;
.search-bar {
width: 100%;
max-width: 100%;
}
#book-search-results {
left: 0;
right: 0;
}
}
#book-search-results {
position: absolute;
background-color: var(--navbar-dropdown-background-color);
list-style: none;
padding: 0;
display: block;
min-width: 100%;
overflow: hidden;
top: 43px;
border-top: 10px solid var(--accent-color);
z-index: 10;
&:empty {
display: none;
}
li {
padding: 10px 25px;
a {
display: block;
}
}
@media (max-width: 1200px) {
top: 84px;
}
}
}
ul.navbar-nav {
height: 100%;
> li.nav-item {
text-align: left;
vertical-align: middle;
padding: 15px;
border-top: solid 10px var(--navbar-background-colour);
border-bottom: solid 10px var(--navbar-background-colour);
&:has(a.show) {
border-bottom: 10px solid var(--accent-color);
background-color: var(--navbar-dropdown-background-color);
}
.dropdown-menu {
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-ms-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
max-height: 0;
display: block;
overflow: hidden;
opacity: 0;
a {
padding-left: 25px;
padding-right: 25px;
}
&.show {
max-height: inherit;
opacity: 1;
}
}
@media (max-width: 1200px) {
.dropdown-menu {
a {
padding-left: 50px;
}
}
}
}
}
}
.navbar-toggler {
margin-right: 20px;
&:focus {
box-shadow: none;
}
.navbar-toggler-icon {
width: inherit;
height: inherit;
}
}
}
.navbar-clearfix {
height: 72px;
@media (max-width: 1200px) {
height: 0;
}
}