mirror of
https://github.com/Unkn0wnCat/KevinK.dev.js.git
synced 2025-04-29 10:16:53 +02:00
69 lines
No EOL
1.3 KiB
SCSS
69 lines
No EOL
1.3 KiB
SCSS
@import "../globals";
|
|
|
|
.scamboxSection {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.noticeBox {
|
|
background-color: $noticeColor;
|
|
padding: $layoutPadding;
|
|
border-radius: 10px;
|
|
|
|
> p {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
.meta {
|
|
display: block;
|
|
margin-top: -25px;
|
|
margin-bottom: $layoutPadding*2;
|
|
}
|
|
|
|
.chatBox {
|
|
width: 100%;
|
|
min-height: 600px;
|
|
border-radius: 10px;
|
|
position: relative;
|
|
margin-top: 20px;
|
|
|
|
> span {
|
|
position: relative;
|
|
top: 0;
|
|
left: 20px;
|
|
display: flex;
|
|
justify-content: left;
|
|
align-items: center;
|
|
z-index: 20;
|
|
font-size: 1.5em;
|
|
text-shadow: 0 0 10px black;
|
|
|
|
@media(prefers-color-scheme: light) {
|
|
text-shadow: 0 0 10px white;
|
|
}
|
|
|
|
> svg {
|
|
margin-right: 10px;
|
|
}
|
|
}
|
|
|
|
|
|
> iframe {
|
|
position: absolute;
|
|
top: 25px;
|
|
left: 0;
|
|
width: 100%;
|
|
height: calc(100% - 25px);
|
|
border: none;
|
|
outline: none;
|
|
border-radius: 10px;
|
|
box-shadow: -1px 11px 33px -10px rgba(127, 127, 127, 0.2),
|
|
-1px 11px 33px -10px rgba($accentColor, 0.25);
|
|
|
|
@media (prefers-color-scheme: light) {
|
|
box-shadow: -1px 11px 33px -10px rgba(29, 29, 29, 0.2),
|
|
-1px 11px 33px -10px rgba($accentColor, 0.25);
|
|
}
|
|
}
|
|
|
|
} |