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); }
|
||||
7
css/fish.css
Normal file
7
css/fish.css
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
img {
|
||||
max-width: 640px;
|
||||
}
|
||||
|
||||
header, div {
|
||||
text-align: center;
|
||||
}
|
||||
20
css/index.css
Normal file
20
css/index.css
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
.section {
|
||||
padding-top: 0.5lh;
|
||||
}
|
||||
|
||||
header, footer {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style-type: '- ';
|
||||
padding-left: 3ch;
|
||||
margin-top: 0.5lh;
|
||||
margin-bottom: 0.5lh;
|
||||
}
|
||||
|
||||
.copyleft {
|
||||
font: sans-serif;
|
||||
display: inline-block;
|
||||
transform: rotateY(180deg);
|
||||
}
|
||||
|
|
@ -1,31 +1,9 @@
|
|||
:root {
|
||||
--bg-color: #000000;
|
||||
--fg-color: #FFFFFF;
|
||||
}
|
||||
|
||||
html {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
background-color: var(--bg-color);
|
||||
color: var(--fg-color);
|
||||
font-size: 1em;
|
||||
font-family: "Cascadia Code", monospace;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
::selection {
|
||||
background-color: var(--fg-color);
|
||||
color: var(--bg-color);
|
||||
}
|
||||
|
||||
body {
|
||||
width: 80ch;
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
a, a:visited { color: var(--fg-color); }
|
||||
|
||||
header, footer {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
Loading…
Add table
Add a link
Reference in a new issue