ABOUT
+EXT
Hi, I'm V1; your local internaut exploring cyberspace!
I also go by Goggles, and kin names when shifted.
It/its, 2nd-person you + thou/thee.
I'm agender and aegoro/apothiro.
I have ADHD, and I'm autistic.I'm a mostly serious kinnie. Yes, I'm serious and say "kinning" and "kinnie". Don't like that? Your problem.
I'm plural. You can ask for more about us if we've spoken before. Sysmeds scram.I'm always looking for new friends; if anything catches your eye, feel free to contact me! Friends can have my Discord.
KIN LIST
FICTIVETYPE: V1
(ULTRAKILL)- "Goggles"
(System Shock 2)
- Birds
(psychological cladotherian)
- Sir Daniel Fortesque
(MediEvil)- The Hacker
(System Shock)
- Sir Kyvalt
(no source)- Johnny 5
(Short Circuit & Short Circuit 2)
- Wade Watts
(Ready Player One [Novel])- Eyeballs
(The Residents)
- Player Character
(Iron Lung)
- Truman Burbank
(The Truman Show)
- mdl.c,v
(self-insert)
- Doom Slayer
(DOOM)...and more! Ask for kin Carrd.
BYF
If I do something distasteful, please stay calm with me; it's easier for me to process things that way.
I support- All queers/plurals/'kin
- Chronosians + Dissodics
- BLM + LANDBACK, reproductive rights, self-dx
- Artistic freedom + Tagging + Critical thinking
- Paraphiles*
I am against- Discrimination/bigotry, unreasonable exclusion
- Glorifying pedos/incest
- TransID, radqueers
- *MAPs, *Saying Paraphilias are inherently queer
- *Pedo/zoo/necro "pride"
FRIENDS
These are my fucken pals!
If you want to be here, tell me; be aware I'm brutally honest about who I consider friends.
If I don't consider you a friend it doesn't mean I hate you! I just don't feel I know you well enough.
RECREATION DECK

The Recreation Deck is currently under construction; please come back later. We apologise for any inconvenience, and hope you have a wonderful day!
EXTRAS
Codes used on this Carrd
- News ticker Javascript effect
- CSS text blinking effect
- Scrolling text box
- Glenthemes music player #06
Code specific to this Carrd
- CSS / cursor + selection colour
- "About" intro text
- Interests container scroll box
- Music player code
Resources
watermelon :: Ed's Carrd Doc
Design Inspo
meaningless-tomorrows
CSS
On this site, I've placed most of the CSS I've added in a single embed to make things more tidy. This CSS is mostly comprised of what I've originally copied + pasted from my published site to make it easier to create the embeds with code.
It also includes the CSS for my custom cursor, text selection colour, and scrollbar.
This snippet below does not reflect the entire code within the CSS embed currently on this site.
<style type="text/css">
* {cursor: url(https://example.com/cursor.cur), default !important;}
/* ===== Scrollbar ===== */
/* Firefox */ *
{ scrollbar-width: auto;
scrollbar-color: #012B1E #012B1E; }
/* Chrome, Edge, and Safari */
*::-webkit-scrollbar
{ width: 10px; }
*::-webkit-scrollbar-track
{ background: #012B1E; }
*::-webkit-scrollbar-thumb
{ background-color: #60F7C0;
border-radius: 10px;
border: 0px solid #ffffff; }
/* ===== Scrollbar ===== */
/* ===== Selection ===== */
::selection
{ color: black;
background: #60F7C0; }
/* ===== Selection ===== */
</style>
"ABOUT" INTRO CODE
First, I used a normal Carrd text element and formatted the text to my liking. Then, I copied the HTML + CSS for the text element from the published site, and pasted it into an embed element along with the Javascript effect I wanted for the flashing name text. If you want to do something similar yourself, here's something along the lines of how your HTML will look like when finished.
<p id="textid" class="style0">
<span>Hello, world, I have a
<span class="blinking"><strong>name</strong></span>
, I'm not afraid to use it!</span></p>
INTERESTS CODE
This one took a lot of messing around to get to work. It was easy to implement the scrollbox into a text element that didn't use columns, but adding columns in complicated things a bit.
I copied the HTML + CSS from the published site after having the formatting I wanted, and added the scrollbox CSS that was needed into the embed element.
At first the code only worked when I kept the copy of the container with the same ID in a hidden section, but that was no longer needed after I really focused on making sure all the needed CSS was included.
Make sure when copying/pasting CSS that you inspect each element and copy over all the CSS associated with each element. In my case, that meant I ended up having to use a site like Codepen to ensure everything was working correctly, but it was worth the trouble.
MUSIC PLAYER CODE
The music player is divided into two embeds based on where Glenthemes's page says to insert the code.
Embed #1 is set to Hidden, and the code is added to the Head. #2 is also Hidden and set at Body End.In the first embed, I added in some CSS to center the player and anchor it to the bottom of the screen. Here's what that part of the code looks like.
Embed #1 snippet:
.glenjams-06``{ display:none;`` position:fixed;`` bottom:0;`` margin-bottom:30px;
left:50%;`` transform: translate(-50%, -50%);`` z-index: 99;``}
In the second embed, I also set the audio to loop.