feat: home and fish
This commit is contained in:
parent
5e319114b3
commit
b34cef4dcd
15 changed files with 270 additions and 160 deletions
22
css/base.css
Normal file
22
css/base.css
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
:root {
|
||||
--bg-color: #111111;
|
||||
--fg-color: #FFFFFF;
|
||||
}
|
||||
|
||||
html {
|
||||
align-items: center;
|
||||
background-color: var(--bg-color);
|
||||
color: var(--fg-color);
|
||||
display: flex;
|
||||
font-family: monospace;
|
||||
font-size: 1.5em;
|
||||
justify-content: center;
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
::selection {
|
||||
background-color: var(--fg-color);
|
||||
color: var(--bg-color);
|
||||
}
|
||||
|
||||
a, a:visited { color: var(--fg-color); }
|
||||
Loading…
Add table
Add a link
Reference in a new issue