feat: initial commit
This commit is contained in:
commit
2c7b8dcfe1
2 changed files with 133 additions and 0 deletions
32
css/style.css
Normal file
32
css/style.css
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
:root {
|
||||
--bg-color: #000000;
|
||||
--fg-color: #FFFFFF;
|
||||
--ln-color: #FFFF00;
|
||||
--ln-color-visited: #FFAA00;
|
||||
}
|
||||
html {
|
||||
display: flex;
|
||||
width: 100vw;
|
||||
background-color: var(--bg-color);
|
||||
color: var(--fg-color);
|
||||
font-size: 1em;
|
||||
font-family: monospace, "Cascadia Code", monospace;
|
||||
}
|
||||
body {
|
||||
width: 80ch;
|
||||
height: 100vh;
|
||||
margin: 0;
|
||||
}
|
||||
#who { text-align: center; padding-top: 1lh; }
|
||||
#bio { padding: 1lh 0; }
|
||||
a { color: var(--ln-color); }
|
||||
a:visited { color: var(--ln-color-visited); }
|
||||
ul {
|
||||
list-style-type: '- ';
|
||||
padding-left: 4ch;
|
||||
margin-top: 1lh;
|
||||
margin-bottom: 1lh;
|
||||
}
|
||||
.section-title { text-decoration: underline; }
|
||||
.footer-ws { max-height: use-available; }
|
||||
footer { text-align: center; }
|
||||
Loading…
Add table
Add a link
Reference in a new issue