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 {
|
||||
font-family: monospace;
|
||||
font-size: 21px;
|
||||
max-width: 80ch;
|
||||
margin: auto;
|
||||
background: black;
|
||||
color: lime;
|
||||
border: solid 2px;
|
||||
padding: 20px;
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
a {
|
||||
color: orange;
|
||||
text-decoration: underline dotted;
|
||||
}
|
||||
a:visited {
|
||||
color: chocolate;
|
||||
|
@ -25,22 +27,44 @@ p {
|
|||
|
||||
pre {
|
||||
border: solid 2px;
|
||||
padding: 20px;
|
||||
padding: 15px;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
ul {
|
||||
margin: initial;
|
||||
list-style-type: "> ";
|
||||
}
|
||||
|
||||
hr {
|
||||
margin-top: 20px;
|
||||
border-style: solid;
|
||||
color: lime;
|
||||
border: 1px solid lime;
|
||||
}
|
||||
|
||||
nav ul {
|
||||
display: flex;
|
||||
list-style: none;
|
||||
}
|
||||
nav ul li {
|
||||
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