diff --git a/index.html b/index.html index d6f6c90..961a7a5 100644 --- a/index.html +++ b/index.html @@ -18,9 +18,9 @@
Cosmic Blaster is a game I created during my Master's degree for a Unity class.
@@ -51,7 +51,7 @@
For my bachelor's degree, 2 peers and I developed a university's schedule as a webapp. We created the databas and built the back and front with symfony.
@@ -63,7 +63,7 @@
I also develop this website by hand. I use it as a way to promote my work and experience, and to freshen up my skills in html/css. diff --git a/portfolio/portfolio.css b/portfolio/portfolio.css index 768e14c..4891c72 100644 --- a/portfolio/portfolio.css +++ b/portfolio/portfolio.css @@ -20,6 +20,11 @@ div.side-by-side article { a.hidden { font-style: normal; text-decoration: none; + color: var(--main-ft-color); +} + +article header { + margin-top: 5px; } main p { diff --git a/style.css b/style.css index be728b8..c5cc511 100644 --- a/style.css +++ b/style.css @@ -1,9 +1,22 @@ @import "fonts/mononoki/mononoki.css"; +:root { + --main-bg-color: #1c1b22; + + --main-ft-color: #fbfbfe; + + --main-a-color: #ffadff; + --main-a-hover: #ffdfff; + +} + html { - color-scheme: light dark; + color-scheme: dark; width: 100%; min-width: 320px; + + background-color: var(--main-bg-color); + color: var(--main-ft-color); } body { @@ -14,3 +27,22 @@ body { * { font-family: 'mononoki'; } + +h1 { + text-decoration: double underline; +} + +a.button { + text-decoration: none; + + color: var(--main-a-color); + + padding: 5px; + border: 1px solid var(--main-a-color); + border-radius: 5px; +} + +a.button:hover { + color: var(--main-a-hover); + border: 1px solid var(--main-a-hover); +} \ No newline at end of file