Files
ScoutingApp2022/webserver/src/components/Navigation/Toolbar/Toolbar.css
T
Aquaticholic 87bebf8ae6 INPUT PAGE WIP
2022-01-28 13:40:10 +00:00

63 lines
918 B
CSS

.toolbar {
position: sticky;
top: 0px;
left: 0;
width: 100%;
background: #00a65a;
height: 56px
}
.toolbar_navigation {
display: flex;
height: 100%;
align-items: center;
padding: 0 1rem;
}
.toolbar_logo {
margin-left: 0.5rem;
}
.toolbar_logo a {
color: white;
text-decoration: none;
font-size: 2.0rem;
}
.toolbar_spacer {
flex: 1;
}
.toolbar_items ul {
list-style: none;
margin: 0;
padding: 0 0;
display: flex;
}
.toolbar_items li {
color: white;
background-color: #00000000;
text-decoration: none;
font-size: 1.5rem;
padding: 0 0.6rem;
}
.toolbar_items a {
color: white;
text-decoration: none;
padding-top: 0.8rem;
padding-bottom: 0.8rem;
}
.toolbar_items a:hover,
.toolbar_items a:active {
color: #ff3b76;
}
@media (max-width: 768px) {
.toolbar_items {
display: none;
}
}