Use pure CSS

This commit is contained in:
Magnus Åhall 2025-11-29 09:33:42 +01:00
parent 989542be91
commit 40a68d6ad0
6 changed files with 402 additions and 304 deletions

View file

@ -1,23 +1,29 @@
@import "theme.css";
html {
box-sizing: border-box;
background: #efede8;
font-family: "Liberation Mono", monospace;
font-size: 14px;
margin: 0px;
padding: 0px;
box-sizing: border-box;
background: var(--color2);
font-family: "Liberation Mono", monospace;
font-size: 14px;
margin: 0px;
padding: 0px;
}
body {
margin: 0px;
padding: 0px;
margin: 0px;
padding: 0px;
}
*,
*:before,
*:after {
box-sizing: inherit;
box-sizing: inherit;
}
*:focus {
outline: none;
outline: none;
}
[onClick] {
cursor: pointer;
cursor: pointer;
}