From e76eee7cd90d6506354e18e85a1e8f6e3a6c99d7 Mon Sep 17 00:00:00 2001 From: Violet Date: Fri, 22 Sep 2023 14:33:48 +0000 Subject: [PATCH] Finally added codeberg link --- static/index.html | 4 ++-- static/style.css | 23 ++++++++++++++++------- 2 files changed, 18 insertions(+), 9 deletions(-) diff --git a/static/index.html b/static/index.html index eb2dc8b..3a0577b 100644 --- a/static/index.html +++ b/static/index.html @@ -19,10 +19,10 @@


Hi! I'm Violet, a teenage web and game developer.

My main engine is Godot, and i'm currently bouncing between projects, but I am mainly focusing on a space shooter and a boss rush right now.

-

If you have any issues with the site, put up an issue on codeberg!

+

If you have any issues with the site, put up an issue on codeberg!


diff --git a/static/style.css b/static/style.css index 6708bc5..9b2de9f 100644 --- a/static/style.css +++ b/static/style.css @@ -81,21 +81,30 @@ body { } a { - border: 2px white solid; - border-radius: 0px; color: rgb(230, 175, 255); - background-color: black; - padding: 5px; - margin: 5px; text-decoration: none; - font-size: 2rem; display: inline-block; transition: 1.5s all cubic-bezier(0.075, 0.82, 0.165, 1); } a:hover { + transform: scale(1.1); + margin: 7px; + color: white; +} + +.buttonLink { + font-size: 2rem; + border: 2px white solid; + border-radius: 0px; + background-color: black; + padding: 5px; + margin: 5px; +} + +.buttonLink:hover { background-color: rgb(60, 50, 75); - transform: scale(1.2); + transform: scale(1.1); color: white; transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1); }