mirror of
https://git.ari.lt/ari.lt/ari.lt.git
synced 2025-02-04 17:49:24 +01:00
9f9afc5938
Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
63 lines
1.2 KiB
SCSS
63 lines
1.2 KiB
SCSS
@import "../config/_main.scss";
|
|
|
|
.boot {
|
|
margin: 1em 0em 1em 1em;
|
|
font-size: 1.5em;
|
|
|
|
#bootver {
|
|
color: $boot_header_colour;
|
|
margin-left: 1.12em; /* makes it that it aligns with 'boot' messages */
|
|
}
|
|
|
|
#bootver::before {
|
|
content: "WebRC version " $boot_ver;
|
|
}
|
|
|
|
.bmsg[bmsg_type="ok"] {
|
|
&::after {
|
|
content: "[OK]";
|
|
float: right;
|
|
color: $ok_colour;
|
|
}
|
|
|
|
&::before {
|
|
content: " * ";
|
|
color: $ok_colour;
|
|
}
|
|
}
|
|
|
|
.bmsg[bmsg_type="warn"] {
|
|
&::after {
|
|
content: "[WARNING]";
|
|
float: right;
|
|
color: $warn_colour;
|
|
}
|
|
|
|
&::before {
|
|
content: " * ";
|
|
color: $warn_colour;
|
|
}
|
|
}
|
|
|
|
.bmsg[bmsg_type="error"] {
|
|
&::after {
|
|
content: "[ERROR]";
|
|
float: right;
|
|
color: $error_colour;
|
|
}
|
|
|
|
&::before {
|
|
content: " * ";
|
|
color: $error_colour;
|
|
}
|
|
}
|
|
|
|
.bmsg::first-letter {
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.bmsg {
|
|
word-wrap: break-word;
|
|
word-break: break-all;
|
|
}
|
|
}
|