From 46f80757dc6b0f9a2bbeb911b7ac6b2334c5260e Mon Sep 17 00:00:00 2001 From: Ruben Date: Sat, 4 Nov 2023 00:11:20 -0500 Subject: [PATCH] get most of it done --- index.html | 16 +++++---- style.css | 102 +++++++++++++++++++++++++++++++++++------------------ 2 files changed, 77 insertions(+), 41 deletions(-) diff --git a/index.html b/index.html index 55633f5..17727c2 100644 --- a/index.html +++ b/index.html @@ -15,20 +15,22 @@
-
my profile picture, which is most likely a grey yoshi
+
my profile picture, which is most likely a grey yoshi
-

hey, i'm ruben.

-

welcome to my site.

+

hey, i'm ruben.

+

welcome to my site.

+ ~/links ~/about-me ~/fun-facts
-
-

~/socials

-
+
@@ -51,6 +53,8 @@
  • my profile pictures are usually random characters from different types of media that i grayscale and use as my profile picture. my current phase is yoshi.
  • i used to have a joke where i loved cheese, in a "i cannot live with cheese, give me the cheese or i die" way. technically the joke does still exist to some extent in a friend group, but otherwise has mostly died out. 🧀
  • joined fedi around 2020 or so, originally on mas.to before closing shop and moving to types.pl which has a nice local community, before moving to miruku.cafe for a short while before finally landing at lea.pet.
  • +
  • i prefer lowercase when possible. it just seems more natural.
  • +
  • i am terrible at spelling. i had to at least search up like 10 words when typing this entire site out to make sure i didn't misspell anything.
  • diff --git a/style.css b/style.css index edd9caa..035442c 100644 --- a/style.css +++ b/style.css @@ -211,6 +211,44 @@ html { } /* -- end of pixelated borders -- */ +/* -- usual css things -- */ +h1 { + color: var(--header); + font-size: 32px; + text-shadow: 0px 0px 14px var(--accent-1); + margin: 0px 0px 5px; +} + +h2 { + color: var(--header-2); + font-size: 26px; + text-shadow: 0px 0px 8px var(--header-2); +} + +li, p { + color: var(--fg); + font-size: 20px; + margin: 20px 0px 0px 0px; +} + +ul { + margin: 0px; +} + +small { + color: var(--fg); + font-size: 16px; +} + +a { + color: var(--accent-1); + text-shadow: 0px 0px 5px var(--accent-1); + font-size: 20px; +} + +/* -- end of usual css things -- */ + +/* -- styling the rest of the elements/custom stuff -- */ .main { width: 100%; max-width: 60%; @@ -219,14 +257,34 @@ html { transform: translate(31%, -7%); } -.intro-box, .socials, .about-me, .fun-facts { +.pfp-image { + width: 150px; + height: 150px; +} + +.site-intro { + margin: -2px; +} + +.navnt { + color: var(--header-2); + text-shadow: 0px 0px 8px var(--header-2); +} + +.arrow { + color: var(--accent-1); + text-shadow: 0px 0px 8px var(--accent-1); + font-size: 16px; +} + +.intro-box, .links-n-socials, .about-me, .fun-facts { position: relative; display: flex; padding: 30px; background-color: var(--bg); } -.intro-text, .socials, .about-me, .fun-facts { +.intro-text, .links-n-socials, .about-me, .fun-facts { flex-direction: column; } @@ -234,6 +292,10 @@ html { justify-content: space-evenly; } +.links-n-socials .links-list { + flex-direction: row; +} + .pfp { width: 150px; height: 150px; @@ -244,9 +306,10 @@ html { transform: translateY(4%) } -.socials { +.links-n-socials { position: relative; } +/* -- end of styling the rest of the elements -- */ /* -- shirnk cards if screen is small -- */ @media screen and (max-width: 600px) { @@ -256,35 +319,4 @@ html { transform: translate(4%, -3%); } } - -h1 { - color: var(--header); - font-size: 32px; - text-shadow: 0px 0px 14px var(--accent-1); -} - -h2 { - color: var(--header-2); - font-size: 26px; - text-shadow: 0px 0px 8px var(--header-2); -} - -li, p { - color: var(--fg); - font-size: 20px; -} - -li { - margin-bottom: 20px; -} - -a { - color: var(--accent-1); - text-shadow: 0px 0px 5px var(--accent-1); - font-size: 20px; -} - -img:nth-child(1) { - width: 150px; - height: 150px; -} \ No newline at end of file +/* -- yea -- */ \ No newline at end of file