Website/docs/assets/scss/components/aki-toolbar.scss

44 lines
967 B
SCSS
Raw Normal View History

2020-10-13 01:18:11 +02:00
aki-toolbar,
*[aki-toolbar],
*.aki-toolbar {
align-items: center;
background-color: $primary;
// box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
box-shadow: $elevation-z4;
color: $on-primary;
display: flex;
flex-wrap: wrap;
height: 100%;
justify-content: flex-start;
max-height: 5.5rem;
min-width: 20rem;
width: 100%;
2020-11-25 13:34:49 +01:00
z-index: 2;
2020-10-13 01:18:11 +02:00
a {
color: $on-primary;
text-decoration: none;
}
nav {
align-items: center;
display: flex;
a {
border-bottom: .25rem solid $primary;
cursor: pointer;
padding: 1rem;
letter-spacing: .0178571429em;
line-height: 1.25rem;
transition: .25s ease-in-out;
2020-11-25 13:34:49 +01:00
2020-10-13 01:18:11 +02:00
&:hover {
filter: invert(.2);
}
2020-11-25 13:34:49 +01:00
2020-10-13 01:18:11 +02:00
&[active] {
border-bottom: .25rem solid $accent;
2020-11-25 13:34:49 +01:00
}
2020-10-13 01:18:11 +02:00
}
}
}