Move the langbar to be part of the navbar - TODO: dropdown

This commit is contained in:
2021-11-04 21:04:27 -05:00
parent b9879729bf
commit 42f0046747
2 changed files with 37 additions and 40 deletions

View File

@ -118,7 +118,7 @@ footer {
/* Navbar formatting */
.navbar, .langbar {
.topbar {
display: flex;
flex-wrap: nowrap;
flex-direction: row;
@ -127,33 +127,28 @@ footer {
margin-top: 5px;
padding: 4px;
align-items: flex-start;
}
.navbar, .langpicker {
display: flex;
}
.navbar {
flex-grow: 1;
overflow: auto;
}
.navbar-item, .langbar-item {
/*flex-grow: 1;*/
.navbar a, .langpicker a {
padding: 8px 12px;
border-radius: 12px;
}
/*.navbar-item:first-child,
.langbar-item:first-child {
border-top-left-radius: 8px;
border-bottom-left-radius: 8px;
}
.navbar-item:last-child,
.langbar-item:last-child {
border-top-right-radius: 8px;
border-bottom-right-radius: 8px;
}*/
.navbar-item:hover, .langbar-item:hover {
.navbar-item:hover, .langpicker-item:hover {
background-color: #444;
text-decoration: none;
}
.navbar-item.active, .langbar-item.active {
.topbar .active {
font-weight: bold;
}