Initial commit

This commit is contained in:
Ceres 2025-11-15 13:43:23 +00:00
commit fd98a9837c
Signed by: ceres-sees-all
GPG key ID: 9814758436430045
5 changed files with 135 additions and 0 deletions

52
style.css Normal file
View file

@ -0,0 +1,52 @@
:root {
background: #1e1e2e;
color: #cdd6f4;
font-family: mono;
}
html {
--border-width: 5px;
padding: var(--border-width);
&:before {
content: '';
position: fixed;
inset: 0;
border: solid var(--border-width) #b4befe;
}
}
.visually-hidden{
opacity: 0;
}
.cmd-clipboard{
opacity: 0;
}
.terminal-hidden{
opacity: 0;
}
.cmd-prompt {
display: inline-block;
}
.cmd-cursor-line {
display: inline-block;
}
.terminal-error {
color: #f38ba8;
}
.terminal-output {
hyphens: manual;
}
@font-face {
font-family: "mono";
src: url(assets/DepartureMono-Regular.otf);
font-weight: normal;
}