Files
ScoutingApp2022/webserver/src/components/Navigation/Toolbar/Toolbar.css
T

63 lines
918 B
CSS
Raw Normal View History

2022-02-02 23:23:43 -07:00
.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;
2022-01-28 04:25:56 +00:00
font-size: 2.0rem;
2022-02-02 23:23:43 -07:00
}
.toolbar_spacer {
flex: 1;
}
.toolbar_items ul {
list-style: none;
margin: 0;
padding: 0 0;
display: flex;
}
.toolbar_items li {
2022-01-28 13:40:10 +00:00
color: white;
background-color: #00000000;
text-decoration: none;
font-size: 1.5rem;
2022-02-02 23:23:43 -07:00
padding: 0 0.6rem;
}
.toolbar_items a {
color: white;
text-decoration: none;
2022-01-28 13:40:10 +00:00
padding-top: 0.8rem;
padding-bottom: 0.8rem;
2022-02-02 23:23:43 -07:00
}
.toolbar_items a:hover,
.toolbar_items a:active {
color: #ff3b76;
}
@media (max-width: 768px) {
.toolbar_items {
display: none;
}
}