From 532e98c804a1fe5678c09bde1fcc018e8bfe4bf1 Mon Sep 17 00:00:00 2001 From: Ruben Date: Sun, 22 Sep 2024 01:05:55 -0500 Subject: [PATCH] add pronouns and names --- index.html | 51 ++++++++++++++++++++++++++++++++++------------- style.css | 58 ++++++++++++++++++++++++++++++++++-------------------- 2 files changed, 74 insertions(+), 35 deletions(-) diff --git a/index.html b/index.html index 92cfc2f..acdf1ce 100644 --- a/index.html +++ b/index.html @@ -57,12 +57,25 @@

hey, i'm ruben!

cheesed to meet ya.

big gooey synth who is constantly eepy.

-
- now listening status - My recently played songs, fetched from my last.fm account. -

powered by Last.fm Recently Played README

-

i prefer listenbrainz though, see below

-
+
+
+

pronouns

+
    +
  • he/him
  • +
  • they/them
  • +
  • anything else
  • +
+
+
+

names

+
    +
  • ruben
  • +
  • sneexy, sneex*
  • +
  • rubie (ruby)
  • +
  • variations/anything else
  • +
+
+
@@ -222,7 +235,7 @@

buttons

if any are broken and/or missing, poke me.
-

friends! listed alphabetically. last 2 friend buttons are mine! please hotlink whichever you like!

+

friends!

23Sonics amycatgirl authenyo @@ -237,7 +250,7 @@ Gavi/sleepy.ink Jack - Kyropy + Kyropy Lars Lexi Mice Nest @@ -254,12 +267,9 @@ unnick winter Won't Work!/ShittyKopper - - Sneexy - Sneexy
-

misc. things and websites!

+

misc.

Get Firefox uBlock Origin Now! @@ -290,6 +300,15 @@ Doin Your Mom! Hey all, Scott here!
+
+

me! (click to copy html)

+ + +
@@ -304,9 +323,13 @@

custom css

-

use the below text area to add or modify the css on this website live!

+

use the below text area to add or modify the css on this website live! might be a little jank, can't control that.

diff --git a/style.css b/style.css index 1d34385..3328fc9 100644 --- a/style.css +++ b/style.css @@ -441,26 +441,28 @@ about me section/terminal margin-bottom: 1em; } - #lastfm { - background-color: color-mix(in srgb, var(--red) 25%, transparent); - display: inline-flex; - align-items: center; - padding: .6em; - border-radius: 1em; - a { - color: var(--red); + .selfinfo { + display: grid; + grid-template-areas: + "pronouns names"; + div { + text-align: left; + border-radius: 1em; + padding: .7em 1em; + ul { + padding-left: 1em; + } + li { + padding-bottom: 6px !important; + list-style: none; + } } - a i { - font-size: 1.5em; - padding-right: .3mm; - vertical-align: middle; + div:first-child { + background-color: color-mix(in srgb, var(--flamingo) 20%, transparent); } - a:has(i) { - text-decoration: none !important; - } - img { - padding-top: .9em; - max-width: auto; + div:last-child { + background-color: color-mix(in srgb, var(--lavender) 20%, transparent); + margin-left: 1.5em; } } @@ -985,9 +987,23 @@ modify widths and spacing depending on the size of the display padding: 10px 16px; } #sneexy > section { - #lastfm { - img { - max-width: 17em; + .selfinfo { + grid-template-areas: + "pronouns" + "names"; + div { + text-align: center; + margin-left: auto; + margin-right: auto; + ul { + text-align: left !important; + } + } + div:first-child { + margin-bottom: 1em; + } + div:last-child { + margin-left: auto !important; } } }