kopia lustrzana https://gitlab.com/soapbox-pub/soapbox
111 wiersze
1.9 KiB
SCSS
111 wiersze
1.9 KiB
SCSS
.primary-navigation__wrapper {
|
|
.primary-navigation {
|
|
flex-direction: column;
|
|
|
|
> button,
|
|
> .btn {
|
|
justify-content: flex-start;
|
|
font-size: 19px;
|
|
font-weight: bold;
|
|
|
|
> i.fa,
|
|
> .icon-with-counter {
|
|
width: 25px;
|
|
margin-right: 5px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
> .svg-icon {
|
|
width: 25px;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
&::before {
|
|
left: 0;
|
|
border-radius: 999px;
|
|
}
|
|
}
|
|
|
|
&__icon {
|
|
margin-right: 5px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.thumb-navigation {
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
width: 100%;
|
|
height: 50px;
|
|
display: flex;
|
|
background: var(--foreground-color);
|
|
justify-content: space-around;
|
|
border-top: 1px solid hsla(var(--primary-text-color_hsl), 0.2);
|
|
border-radius: 0;
|
|
z-index: 999;
|
|
|
|
&__link {
|
|
padding: 10px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: var(--primary-text-color);
|
|
text-decoration: none;
|
|
font-size: 20px;
|
|
|
|
span {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 895px) {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.sub-navigation {
|
|
position: sticky;
|
|
top: 50px;
|
|
left: 0;
|
|
right: 0;
|
|
width: 100%;
|
|
height: 30px;
|
|
padding: 5px;
|
|
display: flex;
|
|
color: var(--primary-text-color--faint);
|
|
background: var(--foreground-color);
|
|
justify-content: space-around;
|
|
border-bottom: 1px solid hsla(var(--primary-text-color_hsl), 0.2);
|
|
border-radius: 0;
|
|
z-index: 999;
|
|
|
|
&__back {
|
|
margin-right: auto;
|
|
background: transparent;
|
|
border: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: var(--primary-text-color--faint);
|
|
|
|
.svg-icon {
|
|
margin-right: 7px;
|
|
}
|
|
}
|
|
|
|
&__message {
|
|
position: absolute;
|
|
align-self: center;
|
|
justify-self: center;
|
|
font-weight: bold;
|
|
}
|
|
|
|
@media screen and (min-width: 895px) {
|
|
display: none;
|
|
}
|
|
}
|