mirror of
https://git.ari.lt/ari.lt/ari.lt.git
synced 2025-02-05 18:09:24 +01:00
44 lines
No EOL
837 B
CSS
44 lines
No EOL
837 B
CSS
.boot {
|
|
margin: 1em 0em 1em 1em;
|
|
font-size: 1.5em;
|
|
}
|
|
.boot #bootver {
|
|
color: #9acd32;
|
|
margin-left: 1.12em;
|
|
/* makes it that it aligns with 'boot' messages */
|
|
}
|
|
.boot #bootver::before {
|
|
content: "WEBrc version " "1.0";
|
|
}
|
|
.boot .bmsg[bmsg_type=ok]::after {
|
|
content: "[OK]";
|
|
float: right;
|
|
color: #0fd30f;
|
|
}
|
|
.boot .bmsg[bmsg_type=ok]::before {
|
|
content: " * ";
|
|
color: #0fd30f;
|
|
}
|
|
.boot .bmsg[bmsg_type=warn]::after {
|
|
content: "[WARNING]";
|
|
float: right;
|
|
color: #ffff00;
|
|
}
|
|
.boot .bmsg[bmsg_type=warn]::before {
|
|
content: " * ";
|
|
color: #ffff00;
|
|
}
|
|
.boot .bmsg[bmsg_type=error]::after {
|
|
content: "[ERROR]";
|
|
float: right;
|
|
color: #ff0000;
|
|
}
|
|
.boot .bmsg[bmsg_type=error]::before {
|
|
content: " * ";
|
|
color: #ff0000;
|
|
}
|
|
.boot .bmsg {
|
|
text-transform: capitalize;
|
|
word-wrap: break-word;
|
|
word-break: break-all;
|
|
} |