ari.lt/content/styles/shell/main.scss

37 lines
627 B
SCSS
Raw Normal View History

@import "../config/_main.scss";
2021-09-05 02:21:11 +03:00
.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;
}
2021-09-05 05:27:22 +03:00
.prompt:focus {
border: none;
outline: none;
}
2021-09-05 02:21:11 +03:00
.output {
font-size: $shell_font_size / 1.2;
}
}
.shell::before {
content: "$ ";
2021-09-05 02:21:11 +03:00
font-size: $shell_font_size;
color: $default_content_colour;
}
.shell[prompt="root"]::before {
content: "# ";
2021-09-05 02:21:11 +03:00
font-size: $shell_font_size;
color: $default_content_colour;
2021-09-05 05:27:22 +03:00
}