From d9854e2c56906b983f44bdaa68de3fc59755dafb Mon Sep 17 00:00:00 2001 From: Christian Date: Tue, 5 Jan 2021 00:59:38 -0500 Subject: [PATCH] comments explains what the fuck is going on with some of the weird shit im doing to make the div clickable --- styles.css | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/styles.css b/styles.css index a25d184..ffb1ca1 100644 --- a/styles.css +++ b/styles.css @@ -29,7 +29,10 @@ a { opacity: .9; position: relative; transition: opacity .5s; - } +} + /* some hacky shit to make
s clickable. basically just makes + an in a
take up the full div. also changes the cursor but + idk if thats even necessary nor do i care as of 0:57 on a tuesday when im writing this */ .contact a { z-index: 10; width: 100%; @@ -44,6 +47,7 @@ div.contact:hover { cursor: hand; cursor: pointer; } + @media screen and (max-width:500px) { .contact { width: 100%; @@ -52,4 +56,4 @@ div.contact:hover { width: 80%; } } -/* TODO: make it not bad */ +