mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2025-04-09 16:43:36 +02:00
36 lines
849 B
SCSS
36 lines
849 B
SCSS
@import "../../assets/scss/variables";
|
|
@import "../../assets/scss/mixins";
|
|
|
|
.links {
|
|
@include margin-bottom(1);
|
|
&__list {
|
|
display: flex;
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 10px -3px;
|
|
&-item {
|
|
padding: 0;
|
|
margin: 0 3px;
|
|
height: 24px;
|
|
width: 24px;
|
|
line-height: 24px;
|
|
border-radius: 3px;
|
|
text-align: center;
|
|
background: $color-gray-bg;
|
|
& a {
|
|
border: 0;
|
|
& i {
|
|
font-size: 14px;
|
|
color: lighten($color-base, 20%);
|
|
}
|
|
&:hover,
|
|
&:focus {
|
|
& i {
|
|
color: $color-base;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|