mirror of
https://github.com/tenrok/OverlayScrollbars.git
synced 2026-05-17 05:59:40 +03:00
50 lines
871 B
SCSS
50 lines
871 B
SCSS
.logo {
|
|
position: relative;
|
|
|
|
&::before,
|
|
&::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 10px;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: url('~/assets/img/logo.svg');
|
|
background-size: contain;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
z-index: -1;
|
|
}
|
|
&::before {
|
|
filter: blur(33px) saturate(1.22);
|
|
opacity: 0.5;
|
|
}
|
|
&::after {
|
|
filter: drop-shadow(0 6px 22px #5242e3) saturate(1.5);
|
|
top: 0;
|
|
opacity: 0.1;
|
|
}
|
|
}
|
|
|
|
.usedBySeparator {
|
|
position: relative;
|
|
|
|
&::before {
|
|
content: '';
|
|
position: absolute;
|
|
display: block;
|
|
height: 1px;
|
|
width: 100%;
|
|
top: 50%;
|
|
left: 50%;
|
|
border-width: 1px;
|
|
transform: translate(-50%, -50%);
|
|
z-index: -1;
|
|
}
|
|
}
|
|
|
|
.usedBy {
|
|
filter: brightness(0.8) sepia(1) saturate(1.3) hue-rotate(175deg);
|
|
opacity: 0.6;
|
|
}
|