Begin redesign

This commit is contained in:
2026-01-31 00:26:50 -06:00
parent 298233e9f6
commit 24e8d9ef23
5 changed files with 301 additions and 235 deletions

39
css/main.css Normal file
View File

@@ -0,0 +1,39 @@
:root {
--color-background: #010101;
--color-foreground: #aa0000;
}
* {
margin: 0;
padding: 0;
font-family: monospace;
}
html {
background-color: var(--color-background);
color: var(--color-foreground);
}
.tui-box {
width: 100%;
height: auto;
padding: 20px;
border: 2px solid var(--color-foreground);
border-radius: 10px;
margin: 20px;
position: relative;
}
.tui-header {
position: absolute;
top: 0;
left: 25px;
transform: translateY(-50%);
background-color: var(--color-background);
padding: 0 10px;
}
.tui-content p{
font-size: 12pt;
margin: 15px 0 15px 0;
}