36 lines
846 B
SCSS
36 lines
846 B
SCSS
@import 'vars';
|
|
|
|
div {
|
|
background: unquote($divBg);
|
|
}
|
|
|
|
span {
|
|
border: 1px solid rgba(20, 20, 20, $spanOpacity);
|
|
color: $radioTest !important;
|
|
opacity: $spanOpacity2 !important;
|
|
}
|
|
|
|
.chat .messages-wrapper,
|
|
#friends .friends-table {
|
|
background-image: url(map-get($relative-file-test, url));
|
|
background-size: contain;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.avatar-large {
|
|
background-image: url(map-get($avatar, url)) !important;
|
|
border-radius: $avatarRadius !important;
|
|
}
|
|
|
|
// Can't use a for loop as then we don't get the index
|
|
$index: 0;
|
|
@while $index < length($additional-colours) {
|
|
$additional-colour: nth($additional-colours, $index + 1);
|
|
|
|
div:nth-child(#{length($additional-colours)}n + #{$index}) {
|
|
color: unquote(map-get($additional-colour, colour)) !important;
|
|
}
|
|
|
|
$index: $index + 1;
|
|
}
|