mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-01-23 09:50:39 +00:00
34 lines
569 B
SCSS
34 lines
569 B
SCSS
|
.definition-navigation {
|
||
|
display: flex;
|
||
|
flex-flow: row wrap;
|
||
|
justify-content: space-between;
|
||
|
|
||
|
& > div {
|
||
|
flex: 0 1 15rem;
|
||
|
}
|
||
|
|
||
|
@supports (display: grid) {
|
||
|
display: grid;
|
||
|
grid-gap: 1.5rem;
|
||
|
grid-template-columns: repeat(auto-fill, 15rem);
|
||
|
width: 100%;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.definition-navigation__sub-headline {
|
||
|
color: #333;
|
||
|
font-size: 1rem;
|
||
|
font-variant-caps: all-small-caps;
|
||
|
letter-spacing: 0.01em;
|
||
|
margin-top: 0;
|
||
|
word-spacing: 0.01em;
|
||
|
}
|
||
|
|
||
|
.definition-navigation__nav {
|
||
|
flex: 0 0 max-content;
|
||
|
|
||
|
& li + li {
|
||
|
// margin-top: 0.5rem;
|
||
|
}
|
||
|
}
|