diff --git a/assets/gibone-CV.pdf b/assets/gibone-CV.pdf index 2845c37..5fa09e3 100644 Binary files a/assets/gibone-CV.pdf and b/assets/gibone-CV.pdf differ diff --git a/assets/portraitascii.png b/assets/portraitascii.png new file mode 100644 index 0000000..b71e0ec Binary files /dev/null and b/assets/portraitascii.png differ diff --git a/assets/style.css b/assets/style.css index 1086d39..7e0343f 100644 --- a/assets/style.css +++ b/assets/style.css @@ -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; + } +}