67 lines
1.2 KiB
SCSS
67 lines
1.2 KiB
SCSS
.overlay {
|
|
position: fixed;
|
|
border: 2px solid $color8;
|
|
background: $background2;
|
|
color: $color2;
|
|
box-shadow: 0 0 0 1px transparentiz(black, .6);
|
|
z-index: 2000;
|
|
|
|
> div {
|
|
padding: 18px;
|
|
}
|
|
|
|
h4 {
|
|
font: bold 14px/18px Alegreya SC;
|
|
text-transform: uppercase;
|
|
color: $color1;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
letter-spacing: 0.07em;
|
|
|
|
span:last-child {
|
|
color: $color2;
|
|
}
|
|
}
|
|
|
|
p {
|
|
font: 500 12px/16px Alegreya Sans;
|
|
letter-spacing: 0.05em;
|
|
margin-top: 16px;
|
|
|
|
&:last-child {
|
|
margin-bottom: 1px;
|
|
}
|
|
}
|
|
|
|
&.overlay-top {
|
|
&:after {
|
|
content: "";
|
|
position: absolute;
|
|
@include size(12px);
|
|
border-width: 2px;
|
|
border-style: solid;
|
|
border-color: transparent $color8 $color8 transparent;
|
|
background: $background2;
|
|
transform: rotate(45deg);
|
|
@include calc(left, "50% - 8px");
|
|
bottom: -8px;
|
|
pointer-events: none;
|
|
}
|
|
}
|
|
|
|
&.overlay-bottom {
|
|
&:before {
|
|
content: "";
|
|
position: absolute;
|
|
@include size(12px);
|
|
border-width: 2px;
|
|
border-style: solid;
|
|
border-color: transparent $color8 $color8 transparent;
|
|
background: $background2;
|
|
transform: rotate(-135deg);
|
|
@include calc(left, "50% - 8px");
|
|
top: -8px;
|
|
pointer-events: none;
|
|
}
|
|
}
|
|
} |