mirror of
https://git.adityakumar.xyz/blog.git
synced 2024-11-09 19:09:43 +00:00
26 lines
448 B
SCSS
26 lines
448 B
SCSS
|
.language-selector {
|
||
|
width: max-content;
|
||
|
|
||
|
.languages-list {
|
||
|
padding: 0;
|
||
|
background: darken($deputy-color, 3%);
|
||
|
|
||
|
.language-item {
|
||
|
display: inline-block;
|
||
|
list-style-type: none;
|
||
|
text-transform: uppercase;
|
||
|
font-family: $global-serif-font-family;
|
||
|
font-size: 18px;
|
||
|
padding: 0 10px;
|
||
|
|
||
|
&.active {
|
||
|
background: $theme-color;
|
||
|
|
||
|
> a {
|
||
|
color: #fff;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|