81 lines
1.2 KiB
SCSS
81 lines
1.2 KiB
SCSS
@use 'modules/color_theme' as color;
|
|
@use 'modules/config' as conf;
|
|
|
|
.sidebar {
|
|
margin-top: 40px;
|
|
|
|
@include conf.desktop {
|
|
z-index: 2;
|
|
position: fixed;
|
|
height: 100%;
|
|
margin-top: 0;
|
|
width: inherit;
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
@include color.themed() {
|
|
@include conf.ltr {
|
|
margin-right: 4px;
|
|
border-right: color.t('border');
|
|
}
|
|
|
|
@include conf.rtl {
|
|
margin-left: 4px;
|
|
border-left: color.t('border');
|
|
}
|
|
}
|
|
}
|
|
|
|
&__content {
|
|
@include conf.desktop {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-grow: 1;
|
|
justify-content: center;
|
|
}
|
|
}
|
|
|
|
&__list {
|
|
list-style: none;
|
|
padding: 0;
|
|
|
|
text-align: center;
|
|
|
|
&-item {
|
|
display: inline;
|
|
padding: 0 4px;
|
|
line-height: 0;
|
|
}
|
|
}
|
|
|
|
&__introduction {
|
|
top: 40%;
|
|
text-align: center;
|
|
|
|
&-description {
|
|
margin: 0 1em;
|
|
}
|
|
|
|
&-profileimage {
|
|
width: 127px;
|
|
height: 127px;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
&-title {
|
|
text-transform: uppercase;
|
|
font-weight: bold;
|
|
letter-spacing: 2px;
|
|
line-height: 1;
|
|
margin: 1em;
|
|
|
|
a {
|
|
font-size: 3.2rem;
|
|
}
|
|
|
|
h1 {
|
|
margin: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|