updated assets
This commit is contained in:
parent
a54a9c801b
commit
72d1b6d01c
3 changed files with 28 additions and 4 deletions
Binary file not shown.
BIN
assets/portraitascii.png
Normal file
BIN
assets/portraitascii.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.4 MiB |
|
@ -1,15 +1,17 @@
|
||||||
body {
|
body {
|
||||||
font-family: monospace;
|
font-family: monospace;
|
||||||
|
font-size: 21px;
|
||||||
max-width: 80ch;
|
max-width: 80ch;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
background: black;
|
background: black;
|
||||||
color: lime;
|
color: lime;
|
||||||
border: solid 2px;
|
border: solid 2px;
|
||||||
padding: 20px;
|
padding: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: orange;
|
color: orange;
|
||||||
|
text-decoration: underline dotted;
|
||||||
}
|
}
|
||||||
a:visited {
|
a:visited {
|
||||||
color: chocolate;
|
color: chocolate;
|
||||||
|
@ -25,22 +27,44 @@ p {
|
||||||
|
|
||||||
pre {
|
pre {
|
||||||
border: solid 2px;
|
border: solid 2px;
|
||||||
padding: 20px;
|
padding: 15px;
|
||||||
|
font-size: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
ul {
|
ul {
|
||||||
margin: initial;
|
margin: initial;
|
||||||
|
list-style-type: "> ";
|
||||||
}
|
}
|
||||||
|
|
||||||
hr {
|
hr {
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
border-style: solid;
|
border: 1px solid lime;
|
||||||
color: lime;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
nav ul {
|
nav ul {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
list-style: none;
|
||||||
}
|
}
|
||||||
nav ul li {
|
nav ul li {
|
||||||
margin: 0% 2%;
|
margin: 0% 2%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
footer ul {
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (prefers-color-scheme: light) {
|
||||||
|
body {
|
||||||
|
background: oldlace;
|
||||||
|
color: darkslategrey;
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
color: chocolate;
|
||||||
|
}
|
||||||
|
a:visited {
|
||||||
|
color: maroon;
|
||||||
|
}
|
||||||
|
hr {
|
||||||
|
border: 1px solid darkslategrey;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue