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>
36 lines
627 B
SCSS
36 lines
627 B
SCSS
@import "../config/_main.scss";
|
|
|
|
.shell {
|
|
margin: 2em;
|
|
|
|
.prompt {
|
|
color: $shell_colour;
|
|
background-color: $bg_colour;
|
|
border: none;
|
|
|
|
font-size: $shell_font_size;
|
|
width: 90%;
|
|
padding: 0 0 1.2em 0;
|
|
}
|
|
|
|
.prompt:focus {
|
|
border: none;
|
|
outline: none;
|
|
}
|
|
|
|
.output {
|
|
font-size: $shell_font_size / 1.2;
|
|
}
|
|
}
|
|
|
|
.shell::before {
|
|
content: "$ ";
|
|
font-size: $shell_font_size;
|
|
color: $default_content_colour;
|
|
}
|
|
|
|
.shell[prompt="root"]::before {
|
|
content: "# ";
|
|
font-size: $shell_font_size;
|
|
color: $default_content_colour;
|
|
}
|