working on the file system

cd can now display folders in blue
This commit is contained in:
2025-02-23 23:13:05 -05:00
parent 86982c9b96
commit 3640f022f6
7 changed files with 60 additions and 24 deletions

View File

@ -1,3 +1,5 @@
@use "../variables.scss";
@mixin text-styles {
.red { color: rgb(var(--color-red)) }
.green { color: rgb(var(--color-green)) }
@ -30,17 +32,13 @@
@mixin formatting {
@include stdout-layouts;
@include term-elements;
@include text-styles;
p, a, span {
font-size: variables.$default-font-size
}
p {
@include text-styles;
font-size: 1.2rem;
margin: 5px;
span { font-size: inherit; }
a {
font-size: inherit;
&:hover { text-decoration: underline; }
}
a:hover { text-decoration: underline; }
}
}