30 lines
609 B
SCSS
30 lines
609 B
SCSS
@use "colors.scss" as colors;
|
|
|
|
@forward "cursor.scss";
|
|
|
|
#terminal {
|
|
background: colors.$terminal-background;
|
|
color: colors.$terminal-white;
|
|
font-family: "CaskaydiaCove", "CaskaydiaCove Nerd Font", "JetBrains Mono", "JetBrains Mono Nerd", monospace;
|
|
|
|
::-moz-selection {
|
|
background: colors.$terminal-white;
|
|
color: colors.$terminal-background;
|
|
}
|
|
|
|
p {
|
|
margin: 0;
|
|
height: fit-content;
|
|
word-wrap: break-word;
|
|
text-wrap: nowrap;
|
|
|
|
span {
|
|
display: inline-block;
|
|
}
|
|
}
|
|
|
|
.line {
|
|
width: fit-content
|
|
}
|
|
}
|