mirror of
https://github.com/miggymofongo/asteroid.git
synced 2024-11-24 14:10:27 +00:00
22 lines
No EOL
621 B
SCSS
22 lines
No EOL
621 B
SCSS
// ================================================================================
|
|
// + Main
|
|
// --------------------------------------------------------------------------------
|
|
|
|
@mixin ItemBox-Loading() { // [NOTE] It is for `::before` pseudo element. You can use an image by `background` instead of string.
|
|
content: "Loading...";
|
|
@include size(100%, 2em);
|
|
text-align: center;
|
|
font-family: sans-serif;
|
|
font-size: 18px;
|
|
font-weight: bold;
|
|
color: rgb(192,192,192);
|
|
}
|
|
|
|
@mixin Main__SubpanelOpened() {
|
|
background: $HTML_Background;
|
|
filter: brightness(87.5%);
|
|
}
|
|
|
|
@mixin Main-Book__SubpanelOpened() {
|
|
opacity: .75;
|
|
} |