Compare commits
20 Commits
f2066bcef2
...
ba5fb8d428
Author | SHA1 | Date | |
---|---|---|---|
|
ba5fb8d428 | ||
|
3216bb21a8 | ||
|
96548472f4 | ||
|
5bae25eca1 | ||
|
b978de6c9e | ||
|
8cb6849bd0 | ||
|
f3bf726694 | ||
|
fdbb4116e7 | ||
|
64a03e9f85 | ||
|
7039f2b324 | ||
|
296cdd1d46 | ||
|
32f14ee88c | ||
|
be370cbbe9 | ||
|
ed91203119 | ||
|
ae12b4d418 | ||
|
16228e4db4 | ||
|
94384a2b16 | ||
|
a2799fb36e | ||
|
53bddfbb63 | ||
|
3d2b0f3bf4 |
@ -3,3 +3,13 @@ const { url, title, description } = Astro.props;
|
||||
---
|
||||
|
||||
<li><a href=`${url}`>{title}</a> <p>{description}</p></li>
|
||||
|
||||
<style>
|
||||
p {
|
||||
margin: 0.5rem;
|
||||
}
|
||||
|
||||
a {
|
||||
margin-left: 0.5rem;
|
||||
}
|
||||
</style>
|
@ -7,12 +7,11 @@ const backgroundColorNightMode = "#240046";
|
||||
<h3>life of emma</h3>
|
||||
<ul>
|
||||
<li>
|
||||
<!-- <a href="/life/self/">emma's self</a> -->
|
||||
emma's self
|
||||
<a href="/life/self/">emma's self</a>
|
||||
</li>
|
||||
<li>
|
||||
<!-- <a href="/life/interests/">emma's interests</a> -->
|
||||
emma's interests
|
||||
<a href="/life/interests/">emma's interests</a>
|
||||
<!-- emma's interests -->
|
||||
</li>
|
||||
<li>
|
||||
<!-- <a href="/life/sunshine/">emma's rays of sunshine</a> -->
|
||||
@ -28,7 +27,6 @@ const backgroundColorNightMode = "#240046";
|
||||
<li><a href="/site/other">other emma things</a></li>
|
||||
<li><a href="/site/contact">contact</a></li>
|
||||
<li><a href="/site/guestbook">guestbook</a></li>
|
||||
<li>changelog</li>
|
||||
</ul>
|
||||
|
||||
<h3>controls</h3>
|
||||
|
BIN
src/images/pets/baxter-looking.jpg
Normal file
After Width: | Height: | Size: 150 KiB |
BIN
src/images/pets/parakeet.jpg
Normal file
After Width: | Height: | Size: 45 KiB |
BIN
src/images/pets/pupper-two.jpg
Normal file
After Width: | Height: | Size: 43 KiB |
BIN
src/images/pets/pupper.jpg
Normal file
After Width: | Height: | Size: 73 KiB |
BIN
src/images/pets/whiskers-bw-one.jpg
Normal file
After Width: | Height: | Size: 38 KiB |
BIN
src/images/photography/flower-two.jpg
Normal file
After Width: | Height: | Size: 27 KiB |
BIN
src/images/photography/flower.jpg
Normal file
After Width: | Height: | Size: 25 KiB |
BIN
src/images/photography/orange-flower.jpg
Normal file
After Width: | Height: | Size: 37 KiB |
BIN
src/images/photography/parakeet-bw.jpg
Normal file
After Width: | Height: | Size: 31 KiB |
BIN
src/images/photography/pink-flower.jpg
Normal file
After Width: | Height: | Size: 38 KiB |
BIN
src/images/photography/whiskers-bw-three.jpg
Normal file
After Width: | Height: | Size: 34 KiB |
BIN
src/images/picrews/self-four.jpg
Normal file
After Width: | Height: | Size: 55 KiB |
BIN
src/images/picrews/self-one.jpg
Normal file
After Width: | Height: | Size: 46 KiB |
BIN
src/images/picrews/self-three.jpg
Normal file
After Width: | Height: | Size: 117 KiB |
BIN
src/images/picrews/self-two.jpg
Normal file
After Width: | Height: | Size: 47 KiB |
@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9L464.4 300.4c30.4-28.3 47.6-68 47.6-109.5v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5z"/></svg>
|
Before Width: | Height: | Size: 503 B |
BIN
src/images/technology/powerbook.jpg
Normal file
After Width: | Height: | Size: 17 KiB |
@ -3,13 +3,25 @@ import "../styles/global.css";
|
||||
import Header from "../components/Header.astro";
|
||||
import Navigation from "../components/Navigation.astro";
|
||||
import Footer from "../components/Footer.astro";
|
||||
---
|
||||
|
||||
<Header />
|
||||
<Navigation />
|
||||
<main>
|
||||
<section>
|
||||
<slot />
|
||||
</section>
|
||||
</main>
|
||||
<Footer />
|
||||
const { pageTitle } = Astro.props;
|
||||
---
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{pageTitle}</title>
|
||||
</head>
|
||||
<body>
|
||||
<Header />
|
||||
<Navigation />
|
||||
<main>
|
||||
<section>
|
||||
<h1>{pageTitle}</h1>
|
||||
<slot />
|
||||
</section>
|
||||
</main>
|
||||
<Footer />
|
||||
</body>
|
||||
</html>
|
||||
|
62
src/layouts/PicrewLayout.astro
Normal file
@ -0,0 +1,62 @@
|
||||
---
|
||||
import BasicLayout from "./BasicLayout.astro";
|
||||
import { Image } from "astro:assets";
|
||||
|
||||
import imageOne from "../images/picrews/self-one.jpg"
|
||||
import imageTwo from "../images/picrews/self-two.jpg"
|
||||
import imageThree from "../images/picrews/self-three.jpg"
|
||||
import imageFour from "../images/picrews/self-four.jpg"
|
||||
|
||||
const borderColor = "#db7093";
|
||||
const borderColorDark = "#474973";
|
||||
|
||||
const { frontmatter } = Astro.props;
|
||||
|
||||
---
|
||||
<BasicLayout pageTitle={frontmatter.title}>
|
||||
<slot />
|
||||
<div class="picrew-gallery">
|
||||
<figure>
|
||||
<Image src={imageOne} alt={frontmatter.images.one.alt} height={frontmatter.images.one.height} width={frontmatter.images.one.width}/>
|
||||
<figcaption><a href=`${frontmatter.images.one.creditUrl}` target="_blank">{frontmatter.images.one.creditText}</a></figcaption>
|
||||
</figure>
|
||||
<figure>
|
||||
<Image src={imageTwo} alt={frontmatter.images.two.alt} height={frontmatter.images.two.height} width={frontmatter.images.two.width}/>
|
||||
<figcaption><a href=`${frontmatter.images.two.creditUrl}` target="_blank">{frontmatter.images.two.creditText}</a></figcaption>
|
||||
</figure>
|
||||
<figure>
|
||||
<Image src={imageThree} alt={frontmatter.images.three.alt} height={frontmatter.images.three.height} width={frontmatter.images.three.width}/>
|
||||
<figcaption><a href=`${frontmatter.images.three.creditUrl}` target="_blank">{frontmatter.images.three.creditText}</a></figcaption>
|
||||
</figure>
|
||||
<figure>
|
||||
<Image src={imageFour} alt={frontmatter.images.four.alt} height={frontmatter.images.four.height} width={frontmatter.images.four.width}/>
|
||||
<figcaption><a href=`${frontmatter.images.four.creditUrl}` target="_blank">{frontmatter.images.four.creditText}</a></figcaption>
|
||||
</figure>
|
||||
</div>
|
||||
</BasicLayout>
|
||||
|
||||
<style define:vars={{borderColor, borderColorDark}}>
|
||||
.picrew-gallery {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
gap: 2rem;
|
||||
margin: 1.75rem;
|
||||
}
|
||||
|
||||
.picrew-gallery img {
|
||||
border: 4px solid var(--borderColor);
|
||||
border-radius: 5%;
|
||||
}
|
||||
|
||||
.picrew-gallery,
|
||||
.picrew-gallery-header {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
.picrew-gallery img{
|
||||
border: 4px solid var(--borderColorDark);
|
||||
}
|
||||
}
|
||||
</style>
|
@ -14,69 +14,58 @@ const emmaNews = [
|
||||
`<li>02-20-2025 - i've been spending time learning how to use astro instead of hand coding my site. with time there will be a lot here. i like the way content is managed in astro</li>`
|
||||
];
|
||||
---
|
||||
<BasicLayout pageTitle={pageTitle}>
|
||||
<p>
|
||||
you're at emma's place. coffee or tea of your choice are
|
||||
waiting for you. my cat baxter loves pets if you'd like to say
|
||||
hello. there's a little bit of everything that is me here.
|
||||
there's no rush, you can be here for as little or as long as
|
||||
you'd like. you can just take it easy here. if all of this
|
||||
somehow brings you some happiness or makes you feel like
|
||||
maybe there's another human on the other side of your screen
|
||||
then i've done my job. have a look around, don't forget to
|
||||
grab a beverage
|
||||
</p>
|
||||
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>{pageTitle}</title>
|
||||
<style is:global define:vars={{backgroundColor, backgroundColorNightMode, textColorNightMode, linkColorNightMode}}>
|
||||
.status {
|
||||
height: 120px;
|
||||
margin-top: 0.5rem;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
<p>
|
||||
i'm currently working on rebuilding my site in <a href="https://astro.build">astro</a>.
|
||||
i've opted to rebuild the site live and push updates to the site as i make them.
|
||||
rather than waiting to be done and uploading the whole thing. our sites will always be
|
||||
a work in progress, and that is a good thing. i'd like to show how that happens with my homepage,
|
||||
so feel free to check in every so often. you may see a page added or a design change
|
||||
</p>
|
||||
|
||||
.status .statuslol_container .statuslol {
|
||||
background: var(--backgroundColor) !important;
|
||||
}
|
||||
<h3>latest status</h3>
|
||||
<div class="status">
|
||||
<script src="https://status.lol/emma.js?time&link&fluent&pretty" defer></script>
|
||||
</div>
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
.status .statuslol_content p {
|
||||
color: var(--textColorNightMode);
|
||||
}
|
||||
.status .statuslol_container .statuslol {
|
||||
background: var(--backgroundColorNightMode) !important;
|
||||
}
|
||||
.status .statuslol_content .statuslol_time a {
|
||||
color: var(--linkColorNightMode) !important;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<BasicLayout>
|
||||
<h1>welcome to {pageTitle}</h1>
|
||||
<p>
|
||||
you're at emma's place. coffee or tea of your choice are
|
||||
waiting for you. my cat baxter loves pets if you'd like to say
|
||||
hello. there's a little bit of everything that is me here.
|
||||
there's no rush, you can be here for as little or as long as
|
||||
you'd like. you can just take it easy here. if all of this
|
||||
somehow brings you some happiness or makes you feel like
|
||||
maybe there's another human on the other side of your screen
|
||||
then i've done my job. have a look around, don't forget to
|
||||
grab a beverage
|
||||
</p>
|
||||
<h3>news about emma</h3>
|
||||
<ul>
|
||||
<Fragment set:html={emmaNews.map((news) => news)} />
|
||||
</ul>
|
||||
</BasicLayout>
|
||||
|
||||
<p>
|
||||
i'm currently working on rebuilding my site in <a href="https://astro.build">astro</a>.
|
||||
i've opted to rebuild the site live and push updates to the site as i make them.
|
||||
rather than waiting to be done and uploading the whole thing. our sites will always be
|
||||
a work in progress, and that is a good thing. i'd like to show how that happens with my homepage,
|
||||
so feel free to check in every so often. you may see a page added or a design change
|
||||
</p>
|
||||
<style is:global define:vars={{backgroundColor, backgroundColorNightMode, textColorNightMode, linkColorNightMode}}>
|
||||
.status {
|
||||
height: 120px;
|
||||
margin-top: 0.5rem;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
<h3>latest status</h3>
|
||||
<div class="status">
|
||||
<script src="https://status.lol/emma.js?time&link&fluent&pretty" defer></script>
|
||||
</div>
|
||||
.status .statuslol_container .statuslol {
|
||||
background: var(--backgroundColor) !important;
|
||||
}
|
||||
|
||||
<h3>news about emma</h3>
|
||||
<ul>
|
||||
<Fragment set:html={emmaNews.map((news) => news)} />
|
||||
</ul>
|
||||
</BasicLayout>
|
||||
</body>
|
||||
</html>
|
||||
@media (prefers-color-scheme: dark) {
|
||||
.status .statuslol_content p {
|
||||
color: var(--textColorNightMode);
|
||||
}
|
||||
.status .statuslol_container .statuslol {
|
||||
background: var(--backgroundColorNightMode) !important;
|
||||
}
|
||||
.status .statuslol_content .statuslol_time a {
|
||||
color: var(--linkColorNightMode) !important;
|
||||
}
|
||||
}
|
||||
</style>
|
@ -4,3 +4,25 @@ layout: ../../../../layouts/MarkdownLayout.astro
|
||||
title: musically emma
|
||||
description: "music has been a fixture of my life since a child. both listening to it and playing it. read about my journey through my life in regards to music, and my relationship with making music that i had at one point in my life"
|
||||
---
|
||||
|
||||
music is a love language of mine, through life i've gone through many eras of music i've loved, all of them with a story, a reason, or a person behind them. music tells just as much a story of my life as i could tell my own story. so let's go through it together, okay?
|
||||
|
||||
(links in this page open in a new tab)
|
||||
|
||||
### childhood music interests
|
||||
|
||||
does your child listen to The Police? if your child told you they love the song from them called Walking On The Moon <a href="https://www.youtube.com/watch?v=kmJce02JHWM" target="_blank">(listen on youtube)</a>, what would you think? this was childhood emma. she was drawn to music that was well before her time, probably because it is what family members or parents always had on the radio. some things we hold onto forever, and i'll be damned if the drumming style of Stewart Copeland isn't something to fall in love with in itself. other odd childhood interests include Rod Stewart (mom was a big fan) assorted classic rock that i was to young to understand was just talking about sex in every song. to be honest i don't think i had much interest in the music of my childhood at the time. i grew up in a fun part of the mid to late 90s and 00s. there's an era of boy bands, one girl divas, just so much that defined my generation that i have no connection to. i don't regret this though, music is so wide and there is so much to explore, and as i grew i would certainly do this
|
||||
|
||||
### those teenage years
|
||||
|
||||
we gotta talk about 'em. you either hate the music you listened to as a teenager, feel nostalgic for it, or maybe you still listen to it today. for myself, this was a deep dive of classic rock and psychedelic music, no drugs though. teenage me thought to need drugs was to take away from the experience of music, look i was a square okay? do what you want as long as you're safe when you listen to your music
|
||||
|
||||
i'd explore much of what we'd call dad rock today. The Who, Led Zeppelin, Pink Floyd, Cream, The Moody Blues. during this time i'd discover a song that would always hold a special place in my heart, and still does today. Dancing in the Moonlight by King Harvest <a href="https://www.youtube.com/watch?v=g5JqPxmYhlo" target="_blank">(listen on youtube)</a> was love at first listen. i do not know what i love so much about this song, it is just pure joy and safety that i feel when i listen to it. i think the lyrics say it all really, it is just about a good time. what more could one ask for?
|
||||
|
||||
### adulthood and present
|
||||
|
||||
i would quickly shed myself of my "born in the wrong generation" self when i entered my early 20s. i had met someone online playing video games. she was from poland and we enjoyed similar games. one day we just started talking outside of games. we started talking about music, and she just had so much to share. i was awestruck by the music she would show me. i'd find my love of shoegaze from her. of indie rock bands like Metric . there's more to this story then music, but we were realistic. we were both in school and separated by many time zones that made keeping in touch difficult as we got busier with school. i'd hold onto her love of music so deeply though. i got a spotify subscription when spotify was what i'd still consider a decent app. related artists pages led me to indie gems like Built To Spill <a href="https://www.youtube.com/watch?v=15hUcHR7koo" target="_blank">(listen on youtube)</a>, and Pavement. I'd fall in love with the oddities of bands like Galaxie 500 and Smoking Popes <a href="https://www.youtube.com/watch?v=BTmjvsCyqJg" target="_blank">(listen on youtube)</a>. one day, i remember i was listening to Built to Spill, and i looked at their related artists page. in this page i found a band called The Thermals. I played the top song "No Culture Icons" <a href="https://www.youtube.com/watch?v=4u9QcbXf-ls" target="_blank">(listen on youtube)</a> this was it, for 2 minutes and 22 seconds i was in love with everything i heard. they were speaking my language and i wanted more. i went through every album, finding favorites through all of them. over time as i began to understand myself more, i found softer sides of music i would love. this would include music from Hop Along <a href="https://www.youtube.com/watch?v=SuWdggpr3Os" target="_blank">(listen on youtube)</a>, Alvvays <a href="https://www.youtube.com/watch?v=WGRhaFx1Zpw" target="_blank">(listen on youtube)</a>, Courtney Barnett <a href="https://www.youtube.com/watch?v=wTZTeuH7oHg" target="_blank">(listen on youtube)</a>, and many others i so desperately wished i had noted. spotify like a lot of subscription apps had an expiration date, and i would move on to collecting CDs and digital media that i would keep on my computer to listen to offline, but my love of music is always alive like a warm fire
|
||||
|
||||
### playing music
|
||||
|
||||
in my teenage years i would become interested in playing guitar. i was rather obsessed with the electric guitar of music i was hearing at the time and wanted a guitar of my own. nobody tells you that you are horrible at guitar, for like a long time. i think it took me around a year of consistent practice to get both my hands to cooperate. over the years i'd keep playing. when i got into my 20s and started working more i would buy a new guitar. i'd also begin exploring recording my music and the cool sounds that guitar effects pedals could produce. i'd explore fun sounds like the shoegaze albums i was listening to by pouring reverb all over my guitar signal, and adding a fair amount of delay. then i'd revisit sounds i was loving from indie rock bands by using a simple fuzz pedal, the guitar, and the amp. it was a lot of fun overall. if you asked me why i quit, i'd tell you it was because i was no longer pushing myself to get better or learn new things. the honest reason though i think is that much like <a href="./photography.php" target="_blank">photography</a> i was still undiagnosed with ADHD at the time, and after years of obsession, just dropped the interest with no goal of continuing or revisiting it. recently though, i'm hoping that will change. i picked up my acoustic guitar again, and i'd like to begin practicing more with the hopes of learning how to play again
|
||||
|
@ -4,3 +4,22 @@ layout: ../../../../layouts/MarkdownLayout.astro
|
||||
title: photographically emma
|
||||
description: "an intense interest of mine throughout my early and teenage years was photography. you can read about it, and see some of my photos. i hope to revisit this interest soon!"
|
||||
---
|
||||
|
||||
i was quite into taking pictures for awhile. there was a period in the early 2000s where digital SLR (single lens reflex) cameras were quite expensive. while film ones were often cheap second hand. film was also relatively easy to get developed at a pharmacy or at a camera store as these were still a thing and did a nice job at developing photos. during this period of time i would begin learning how to take photographs with a 35mm film SLR.
|
||||
|
||||
the camera belonged to my mom. it was a Pentax K1000. the camera was helpful in that you, the photographer had to control all aspects of the photograph to produce a good photo. the shutter speed, aperture, focus, and zoom if the lens offered it, were all up to you to decide. combined with some knowledge about these settings from a book i had been reading, i began taking photos. the Pentax was helpful in that it has a light meter in the view finder to let you know when you had the shutter and aperture adjusted correctly for the amount of light around you. i would still have to learn about composing photos and making use of different focusing techniques to frame my shots though
|
||||
|
||||
early favorite photograph subjects of mine were, my pet rabbit, sunsets, and flowers. my pet rabbit was always around, and he would also be one of the first subjects i tried with black and white film. the black and white film made his white fur so vibrant. sunsets were another favorite as i had a location available to me the was a hill overlooking a highway. this allowed for great portraits of the sunset as the day was coming to a close. my mom was an avid gardener, and always had new flowers growing. this allowed me to try macro photography, and get very close up beautiful pictures of flowers
|
||||
|
||||
### photography gallery
|
||||
|
||||

|
||||

|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
### camera equipment
|
||||
|
||||
i had a few 35mm SLR cameras. I used my mom's Pentax K1000, but i would eventually buy myself a second hand Nikon F2A camera. this was a very professional camera at the time. it had things like interchangeable viewfinders and focusing screens. my main 35mm SLR that i would use was a nikon N80 that my mom got me for christmas one year. it was more modern and offered automatic film advance and autofocus, but could be turned to all manual if you wanted that. i would eventually get a digital SLR when the prices came down, and took a fair amount of photos with it. unknown to me however was that i was undiagnosed with ADHD, and like many fixations in my life, i would drop photography like a rock with suddenly no interest after a few years of heavy interest and needing to know everything about it
|
||||
|
@ -4,3 +4,23 @@ layout: ../../../../layouts/MarkdownLayout.astro
|
||||
title: technically emma
|
||||
description: "technology was an interest that could always feed my young mind. i was fascinated by it. always driven to learn something new about it. i'd find a career in tech, that would lead to more discoveries about myself. technology will always be a love of mine <3"
|
||||
---
|
||||
|
||||
technology, electronics in particular, was probably one of my first loves. as a child i was quite fond of taking apart anything i could, not yet knowing it would be smart to put it back together. as i entered grade school, a teacher would become quite important in my life. due to being legally blind, he would visit the school once per week, and make sure i was doing okay in school. he would do small assessments and we'd play games that would test common skills a child would have at that age. the thing i was obsessed with every time though, was the laptop he would bring. i would learn that it was an IBM ThinkPad T23. to say i was fascinated by this black square is an understatement. i was hooked by the idea of the computer, it was the device for someone that possessed curiosity like i did. this teacher caught on pretty quickly, and eventually would allow me some time each meeting to just look around on the computer, or make images in paint. trusting a little kid with your work pc is pretty impressive, but i think it really speaks to who this man was and what he meant to me as a whole
|
||||
|
||||
in sixth grade i would have my own computer, though no internet yet. it had windows 98 se, a pentium II processor and 64mb of ram. it was an off brand pc called a pionex. my search for the specific model i had on ebay was always unsuccessful, and the scarcity of drivers for it turned me away from any possible nostalgia purchase if one should it pop up. still though, this was my computer! i didn't have to share it with anyone! i spent most of my time learning how to draw in paint with a mouse. sometimes i would make things for my mom and print them out. soon though, that curiosity grew in me, there was more to this thing than paint. so i would just look around on the computer. i'd browse all the folders. i found the windows directory interesting in particular, it seemed rather important, so i was careful. but i would look through it and wonder what all these oddly named files were for. sometimes i'd click on random programs that were in the windows folder, just to see if they did anything
|
||||
|
||||
### the joy of computing
|
||||
|
||||
as i grew older i became aware it was possible to build your own computer, so during highschool i would learn how to do just that. it wasn't anything special, but it played the now online multiplayer FPS games i was playing far better than the old HP i had at the time. around this time i started visiting the bookstore too, always drawn to the tech section. i kept seeing books about this thing called linux. i didn't know what this was yet, but each of the books came with linux on a cd. i would learn from the books by skimming that linux was an operating system like windows. but it just came in these books! i thought this was quite interesting. after some time and having browsed enough magazines and books on linux to really fire up my curiosity. i purchased a 20GB Maxtor IDE hard drive and a copy of SuSE Linux from CompUSA. i then somehow managed to get this drive installed and set up a dual boot system. i don't recall where or how i learned to do this, but i do know i did not regret wiping my windows install that time. impressive i know ;)
|
||||
|
||||
### can i do this for a living?
|
||||
|
||||
as i was nearing the end of highschool, that all important question started getting asked. what's next? what do i want to do for the rest of my life? when i graduated in 2009, it was pretty apparent the american dream was dead. i saw what happened to my mom and people she worked with during the financial recession. but when you're 18 you still have an absurd feeling of invincibility, that it might somehow be different for you. my time in the field of tech wasn't all that remarkable, and really what i learned was that i should've never did something i loved for a job. my full time career was cut short at the advice of my doctor, though i may be able to work part time in the future. there are part time tech projects that pop up from time to time in my city. usually nothing fancy. something like a company that hasn't learned how to automate windows installs and needs to panic install a bunch of new copies of windows. but i think doing that part time i could live with. i feel a lot different about myself and work than i used to. sometimes i'm just happy i made it through my full time career alive. 'cause yeah, it got that bad at points
|
||||
|
||||

|
||||
|
||||
a powerbook 165c that i won on a whim in an eBay auction. i'm not much into holding onto vintage tech. but could not pass up what appeared to be a relatively untouched laptop from the early 1990s. the system works completed. it booted to Mac OS 7 with applications installed that suggested it sat on a teacher's desk for most of the time it was used. other than a dead battery it was fine. i attempted to reinstall Mac OS 7 with the included recovery media, but a few of the disks were bad. i will get around to making some at some point and exploring this thing more
|
||||
|
||||
### still in love after it all
|
||||
|
||||
for the very double edged sword tech has been in my life, it is still a love of mine. i find it both a blend of art and science. circuit boards resemble well laid out cities. the beautiful websites you browse express themselves though code. there's always another question you can ask, and you can dive as deep as you want to find the answer. i think because of that, part of me will always love tech, both professionally and personally
|
||||
|
@ -6,21 +6,8 @@ const pageTitle = "emma's interests - category";
|
||||
|
||||
const allPosts = Object.values(import.meta.glob('./entries/*.md', {eager: true}));
|
||||
---
|
||||
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{pageTitle}</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<BasicLayout>
|
||||
<h1>{pageTitle}</h1>
|
||||
<ul>
|
||||
{allPosts.map((post: any) => <CategoryPage url={post.url} title={post.frontmatter.title} description={post.frontmatter.description}/>)}
|
||||
</ul>
|
||||
</BasicLayout>
|
||||
</body>
|
||||
</html>
|
||||
<BasicLayout pageTitle={pageTitle}>
|
||||
<ul>
|
||||
{allPosts.map((post: any) => <CategoryPage url={post.url} title={post.frontmatter.title} description={post.frontmatter.description}/>)}
|
||||
</ul>
|
||||
</BasicLayout>
|
||||
|
@ -4,3 +4,33 @@ layout: ../../../../layouts/MarkdownLayout.astro
|
||||
title: emma's goals
|
||||
description: "a list of goals i have in mind that i would like to accomplish. there's no particular timeframe. the only thing i would like is to complete them sooner rather than later"
|
||||
---
|
||||
|
||||
this is a collection of goals that are personal to me. i list them here because i want to show that i am a work in progress, much like anyone else. that i have things i wish to accomplish over no particular timeframe. for most of them i will give them a timeframe of "sooner rather than later"
|
||||
|
||||
- i want to continue sharpening my HTML, CSS and Javascript skills
|
||||
|
||||
- i want to pay off several large bills and no longer live in fear of them
|
||||
|
||||
- i want to continue growing my home here on the personal web
|
||||
|
||||
- i want to feel comfortable interacting with others on the web more, by signing guestbooks and sending emails
|
||||
|
||||
- i want to begin fem presenting, in the safety of my home for the time being
|
||||
|
||||
- i want to get one very nice wig, my natural hair will let me down with my goals, i want a wig that makes me feel beautiful
|
||||
|
||||
- i want to explore the world of makeup and personal beauty, and find things that work with my sensitive skin
|
||||
|
||||
- i want to find clothing and accessories that make me feel cute
|
||||
|
||||
- i want to feel like a princess rather than a knight (gender neutral) in shining armor
|
||||
|
||||
- i want to love someone and actually feel that love in return
|
||||
|
||||
- i want to see if i can work part time like my psychiatrist believes i can
|
||||
|
||||
- i want to get better in terms of my mental health, and remember what a beautiful, happy woman i can be
|
||||
|
||||
- i want to add more goals as they come to this page. as i complete some of these goals, they may be worth a blog post. sometimes completing them will be satisfaction enough. i'll remove things i feel are complete, and add more as i think of them
|
||||
|
||||
this page was last updated on - 3/8/2025
|
||||
|
@ -1,6 +1,38 @@
|
||||
---
|
||||
layout: ../../../../layouts/MarkdownLayout.astro
|
||||
|
||||
title: emma's pets
|
||||
description: "i've had pets all throughout my life. they are a core part of who i am. i've learn so much about animals and myself in the process. you can read about some of them here"
|
||||
title: emma loves pets
|
||||
description: "i've had pets all throughout my life. they are a core part of who i am. i've learned so much about animals and myself in the process. you can read about some of them here"
|
||||
---
|
||||
|
||||
### as a child
|
||||
|
||||
growing up i look fondly on how we always had animals in the house. as a baby my mom had two cats that were close friends. i was born towards their senior years but i do have some memories of them. they liked to stand up and place their front paws on each other's front paws, kind of like a cat tower. it was very cute. they were both very friendly to me even though i was a baby. i think this is where my love of cats started as these two were kind of welcoming me into their home in a way. this would also be my first experience with loss as both would pass away from old age rather closely together. i was too young to understand the significance of loss at the time, though i do remember the process of them getting older and passing away. my mom always speaks fondly of these two cats and has told me she's had many cats throughout her life. though she has a wonderful dog now, i think me and my mom love animals in general. she really helped me foster that love as a child
|
||||
|
||||
### hop along the path of love
|
||||
|
||||
the first animal i really took to as a child was a pet rabbit. as any child would i named him whiskers. whiskers was a dwarf, so a smaller rabbit. he was quite friendly, and loved to run around the house. he loved salt licks and these yogurt drops we had found for rodents. he was content with pellet food but would never turn down a treat! i had read early on that rabbits live longer when they are in an environment that is low stress. i was determined to make sure whiskers had this. i looked after him as best as any child can, being sure to play with him and give him plenty of pets. we had managed to litter train whiskers, so that when he was out of his living area he would use a small litter box made for rodents if he needed to. at the time, my grandma was still alive, and whiskers was always curious about her. always stopping to say hello at the couch she would often sit at watching tv. whiskers would live to be 9 years old! i had certainly lived up to my promise of giving him a good life. i would say goodbye to him at the age of 18, and i cried like any person who loved their animal. it was time to say goodbye to him and i just could feel all the memories that we shared together. i sometimes wonder if i'll see all my pets again one day. it is a nice thought i like to keep around when ever i worry about what is next after life. seeing all my pets again would mean so much
|
||||
|
||||

|
||||
|
||||
### the love language of birds
|
||||
|
||||
at one point we had two parakeets. this is where my love of knowledge would really combine with my love of animals. i was buying every book i could about parakeets. learning all about them. i played with them, learned how to handle them, how to care for them. they were wonderful little birds. each with their own wonderful personality. they often liked to chase each other on the floor playing what seemed to be a game of tag. i remember my grandma quite enjoyed watching them chase each other around. we promised her we'd keep their wings clipped as she had memories of a child of a rather troublemaker type bird a family member had the flew around the house. but she loved these two, and so did my mom and i. parakeets don't live forever though, and it would be time eventually to say goodbye to them as well. this was a unique experience for me. the two of them rewarded every effort to grow closer to them with love and new sides of their personality would appear as a result
|
||||
|
||||

|
||||
|
||||
### ever loving, ever goofy, puppy dogs
|
||||
|
||||
my mom found herself wanting a dog when i was a teenager. she researched for quite some time and found her self interest in the west highland white terrier, or the westie, as they are sometimes called. she had purchased a westie from the pet store, unknown to her at the time this place was mistreating the animals it was raising and breeding. so their is some good in this pup coming home with us, even if it gave money to a store that thankfully was later caught and made to give up selling animals because of this. she was much smaller than her breed would suggest, but she was full of love. we named her montana. i had a **very** nerdy habit of naming pets after codenames for apple computers. i don't remember which one was codename montana, i just know this is why the dog is named montana
|
||||
|
||||
my mom decided one westie was not enough. knowing that purchasing from a pet store was not a good idea, she contacted a breeder and picked a second pup. he was a goofball, not real smart but rambo was full of love and so much joy. i have never seen a being that was truly happy every day like rambo was. every day was the best day yet for him. the satisfaction of being a dog was not lost on him, he showed his joy and love in every way
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
### love on four paws
|
||||
|
||||
the final pet i want to talk about is my current pet. his name is baxter and he is a domestic shorthair cat. he is currently 9 years old. this cat and i have formed a bond so wonderful. i worked hard to get to know him on his terms, and he has rewarded me with the love and affection only a loving pet could show. he often follows me all around the house, curious to see what i'm doing. he loves when i sit with him while he eats, often purring while crunching his food. he loves cardboard boxes, and has one in my room to sleep in while i work on the computer. he occasionally cuddles with me in bed when it is time for sleep. this is the best type of sleep for me, to have this purring, warm, loving creature laying on my chest slowly getting sleepier. sometimes he is still there in the morning, and greets me with a soft meow as i open my eyes for the day. baxter and i have been through so much together. jobs, relationships, sickness, health, ups, downs. he's been there for it all. he is my closest friend it feels like sometimes. it is so wonderful to be truly understood by this cat, and to truly understand him as well. i look forward to many more years with baxter, and i think he thinks the same
|
||||
|
||||

|
||||
|
@ -1,6 +1,34 @@
|
||||
---
|
||||
layout: ../../../../layouts/MarkdownLayout.astro
|
||||
layout: ../../../../layouts/PicrewLayout.astro
|
||||
|
||||
title: emma's picrews
|
||||
description: "i've used picrew as a means to express myself in terms of outwards appearance. it has helped me better understand how i see myself. i'd like to share them"
|
||||
|
||||
images:
|
||||
one:
|
||||
alt: "an image of emma created in picrew. the image is fem presenting and represent characteristics that emma sees of herself when she can be fem presenting in her physical space"
|
||||
height: "300"
|
||||
width: "300"
|
||||
creditUrl: https://picrew.me/en/image_maker/94097
|
||||
creditText: picrew image maker by sangled
|
||||
two:
|
||||
alt: "an image of emma created in picrew. the image is fem presenting and explores characteristics such as hair styles and clothing that emma sees herself wearing and expressing"
|
||||
height: "300"
|
||||
width: "300"
|
||||
creditUrl: https://picrew.me/en/image_maker/2446448
|
||||
creditText: picrew image maker by seyimOn
|
||||
three:
|
||||
alt: "an image of emma created in picrew. the image is fem presenting and explores characteristics such as hair styles, jewelry, transitioning, and features of emma like freckles"
|
||||
height: "300"
|
||||
width: "300"
|
||||
creditUrl: https://picrew.me/en/image_maker/644129
|
||||
creditText: picrew image maker by makowka
|
||||
four:
|
||||
alt: "an image of emma created in picrew. the image is fem presenting and explores characteristics such as shorter, lighter hair and makeup as well as feature of emma such as her current style of glasses and freckles"
|
||||
height: "300"
|
||||
width: "300"
|
||||
creditUrl: https://picrew.me/en/image_maker/426722
|
||||
creditText: picrew image maker by grgikau
|
||||
---
|
||||
|
||||
picrew has been a wonderful help in figuring who i am. how i want to present when everything is right for me to do so. the below pictures all capture different parts of me, i see myself in all of them in some way. some picrews allowed me to add things that others didn't. for example, a top i really want to have one day, or the fact that i have freckles on my face. i love that picrew makes it accessible to discover my identity. it is such a friendly tool. over time i've found that people have different image makers that capture so many wonderful parts of myself, and humanity in general
|
||||
|
@ -4,3 +4,25 @@ layout: ../../../../layouts/MarkdownLayout.astro
|
||||
title: emma's things to do
|
||||
description: "a list of things i'm interested in doing that you can to. resources to do them are provided. mostly related to web development for the time being"
|
||||
---
|
||||
|
||||
this page is a little less specific than [emma's goals](./goals.md) they are things that i'd like to accomplish, but are not truly personal to me. they are things you could look through as well if you are looking for something new to try out or a skill to pick up. sometimes i'll try to include a resource i've found for eventually pursuing a topic if i have researched it far enough to do so. i will mark resources that are paid and resources that are free
|
||||
|
||||
### todo list
|
||||
|
||||
- need to get started making websites? i heard [HTML For People (free)](https://htmlforpeople.com/) is good for that
|
||||
|
||||
- maybe you want to learn HTML and CSS? i used this [freeCodeCamp course (free)](https://www.freecodecamp.org/learn/2022/responsive-web-design/)
|
||||
|
||||
- how about JavaScript? i found this [freeCodeCamp course (free)](https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures-v8/)
|
||||
|
||||
- maybe get a backend going with PHP? i bought this book [PHP Crash Course (paid)](https://nostarch.com/php-crash-course) found this handbook on [freeCodeCamp (free)](https://www.freecodecamp.org/news/the-php-handbook/) and found out there will be a [PHP For People](https://phpforpeople.com/)
|
||||
|
||||
- need to brush up on CSS [flexbox](https://css-tricks.com/snippets/css/a-guide-to-flexbox/) or [gird](https://css-tricks.com/snippets/css/complete-guide-grid/) (both free articles)
|
||||
|
||||
- want to learn how to run linux on a VPS? there's a subreddit built in a course style for that [r/linuxupskillchallenge](https://www.reddit.com/r/linuxupskillchallenge/) (free course, free-tier or free-credit cloud providers usually require a non pre-paid credit card on file)
|
||||
|
||||
- personally, i want to learn pixel art one day. i found this interactive game on steam for a possible starting point [Pixel Art Academy: Learn Mode (paid)](https://store.steampowered.com/app/2330360/Pixel_Art_Academy_Learn_Mode/)
|
||||
|
||||
- maybe PHP isn't your thing, want to learn HTML, CSS, JS and either Ruby on Rails or Node JS? You can use [The Odin Project (free)](https://www.theodinproject.com/) for that!
|
||||
|
||||
i think that's all i have for now that i want to do soon. when i get more things i'll add them to the list! <3
|
||||
|
@ -1,26 +1,13 @@
|
||||
---
|
||||
import BasicLayout from "../../../layouts/BasicLayout.astro";
|
||||
import CategoryPage from "../../../components/CategoryPage.astro";
|
||||
|
||||
const pageTitle = "emma's self - category";
|
||||
|
||||
const allPosts = Object.values(import.meta.glob('./entries/*.md', {eager: true}));
|
||||
|
||||
---
|
||||
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{pageTitle}</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<BasicLayout>
|
||||
<h1>{pageTitle}</h1>
|
||||
<ul>
|
||||
{allPosts.map((post: any) => <CategoryPage url={post.url} title={post.frontmatter.title} description={post.frontmatter.description}/>)}
|
||||
</ul>
|
||||
</BasicLayout>
|
||||
</body>
|
||||
</html>
|
||||
<BasicLayout pageTitle={pageTitle}>
|
||||
<ul>
|
||||
{allPosts.map((post: any) => <CategoryPage url={post.url} title={post.frontmatter.title} description={post.frontmatter.description}/>)}
|
||||
</ul>
|
||||
</BasicLayout>
|
@ -5,21 +5,8 @@ const pageTitle = "emma's rays of sunshine - category";
|
||||
|
||||
const allPosts = Object.values(import.meta.glob('./entries/*.md', {eager: true}));
|
||||
---
|
||||
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{pageTitle}</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<BasicLayout>
|
||||
<h1>{pageTitle}</h1>
|
||||
<ul>
|
||||
{allPosts.map((post: any) => <CategoryPage url={post.url} title={post.frontmatter.title} description={post.frontmatter.description}/>)}
|
||||
</ul>
|
||||
</BasicLayout>
|
||||
</body>
|
||||
</html>
|
||||
<BasicLayout pageTitle={pageTitle}>
|
||||
<ul>
|
||||
{allPosts.map((post: any) => <CategoryPage url={post.url} title={post.frontmatter.title} description={post.frontmatter.description}/>)}
|
||||
</ul>
|
||||
</BasicLayout>
|
||||
|
@ -2,87 +2,75 @@
|
||||
import BasicLayout from "../../layouts/BasicLayout.astro";
|
||||
const pageTitle = "emma's guestbook"
|
||||
---
|
||||
<BasicLayout pageTitle={pageTitle}>
|
||||
<p>
|
||||
hey, just a little heads up. i'm redoing a lot of my site right now.
|
||||
i made this guestbook in a bit of a hurry so some helpful things like
|
||||
letting you know i got your post and will approve it aren't there just yet.
|
||||
but you are welcome to sign it and i'll check every few days to approve entries
|
||||
until i get around to adding a bit more friendliness to parts of this guestbook
|
||||
</p>
|
||||
<form id="add-comment">
|
||||
<label for="name-input">name: <input type="text" id="name-input" name="name-input" required></label>
|
||||
<label for="website-input">website (optional): <input type="text" name="website-input" id="website-input"></label>
|
||||
<label for="math-question">what is seven plus 10: <input type="number" name="math-question" id="math-question" required></label>
|
||||
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>{pageTitle}</title>
|
||||
<style>
|
||||
p {
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
form {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
padding-left: 0.5rem;
|
||||
width: 40vw;
|
||||
height: auto;
|
||||
}
|
||||
label {
|
||||
padding-bottom: 0.5rem;
|
||||
}
|
||||
#name-input {
|
||||
margin-left: 8.88rem;
|
||||
width: 15rem;
|
||||
}
|
||||
<label for="message-input">message: </label>
|
||||
<textarea required name="message-input" id="message-input" rows="8" cols=55"></textarea>
|
||||
<button type="submit">send message</button>
|
||||
</form>
|
||||
|
||||
#website-input {
|
||||
width: 15rem;
|
||||
margin-left: 1.8rem;
|
||||
}
|
||||
<h3>comments</h3>
|
||||
<ul class="comments">
|
||||
</ul>
|
||||
<script>
|
||||
import "../../scripts/guestbook-send-comment"
|
||||
</script>
|
||||
<script>
|
||||
import "../../scripts/guestbook-list-comments"
|
||||
</script>
|
||||
</BasicLayout>
|
||||
|
||||
#message-input {
|
||||
margin-left: 0.6rem;
|
||||
}
|
||||
<style>
|
||||
p {
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
form {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
padding-left: 0.5rem;
|
||||
width: 40vw;
|
||||
height: auto;
|
||||
}
|
||||
label {
|
||||
padding-bottom: 0.5rem;
|
||||
}
|
||||
#name-input {
|
||||
margin-left: 8.88rem;
|
||||
width: 15rem;
|
||||
}
|
||||
|
||||
#math-question {
|
||||
margin-left: 4.5rem;
|
||||
}
|
||||
#website-input {
|
||||
width: 15rem;
|
||||
margin-left: 1.8rem;
|
||||
}
|
||||
|
||||
textarea {
|
||||
resize: none;
|
||||
margin-bottom: 0.25rem;
|
||||
}
|
||||
#message-input {
|
||||
margin-left: 0.6rem;
|
||||
}
|
||||
|
||||
button {
|
||||
margin-left: 0.6rem;
|
||||
padding: 0.25rem;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
#math-question {
|
||||
margin-left: 4.5rem;
|
||||
}
|
||||
|
||||
<body>
|
||||
<BasicLayout>
|
||||
<h1>{pageTitle}</h1>
|
||||
<p>
|
||||
hey, just a little heads up. i'm redoing a lot of my site right now.
|
||||
i made this guestbook in a bit of a hurry so some helpful things like
|
||||
letting you know i got your post and will approve it aren't there just yet.
|
||||
but you are welcome to sign it and i'll check every few days to approve entries
|
||||
until i get around to adding a bit more friendliness to parts of this guestbook
|
||||
</p>
|
||||
<form id="add-comment">
|
||||
<label for="name-input">name: <input type="text" id="name-input" name="name-input" required></label>
|
||||
<label for="website-input">website (optional): <input type="text" name="website-input" id="website-input"></label>
|
||||
<label for="math-question">what is seven plus 10: <input type="number" name="math-question" id="math-question" required></label>
|
||||
textarea {
|
||||
resize: none;
|
||||
margin-bottom: 0.25rem;
|
||||
}
|
||||
|
||||
<label for="message-input">message: </label>
|
||||
<textarea required name="message-input" id="message-input" rows="8" cols=55"></textarea>
|
||||
<button type="submit">send message</button>
|
||||
</form>
|
||||
|
||||
<h3>comments</h3>
|
||||
<ul class="comments">
|
||||
</ul>
|
||||
<script>
|
||||
import "../../scripts/guestbook-send-comment"
|
||||
</script>
|
||||
<script>
|
||||
import "../../scripts/guestbook-list-comments"
|
||||
</script>
|
||||
</BasicLayout>
|
||||
</body>
|
||||
</html>
|
||||
button {
|
||||
margin-left: 0.6rem;
|
||||
padding: 0.25rem;
|
||||
}
|
||||
</style>
|
@ -38,14 +38,14 @@ h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6,
|
||||
p,
|
||||
ul,
|
||||
figcaption,
|
||||
details {
|
||||
h6 {
|
||||
margin: 0.5rem;
|
||||
}
|
||||
|
||||
p {
|
||||
margin: 1rem 0.5rem;
|
||||
}
|
||||
|
||||
main {
|
||||
background-color: var(--background-color);
|
||||
border-radius: 25px;
|
||||
@ -63,10 +63,6 @@ section {
|
||||
padding: 2rem;
|
||||
}
|
||||
|
||||
/* .mobile-header {
|
||||
display: none;
|
||||
} */
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
:root {
|
||||
--background-color: #240046;
|
||||
@ -85,65 +81,6 @@ section {
|
||||
}
|
||||
}
|
||||
|
||||
/* @media only screen and (max-width: 600px) {
|
||||
.mobile-header {
|
||||
display: flex;
|
||||
height: 10vh;
|
||||
width: 100vw;
|
||||
border-radius: 0;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.mobile-header span {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.mobile-header span img {
|
||||
height: 24px;
|
||||
width: 24px;
|
||||
}
|
||||
|
||||
header {
|
||||
display: none;
|
||||
}
|
||||
|
||||
footer {
|
||||
display: none;
|
||||
}
|
||||
|
||||
nav {
|
||||
display: none;
|
||||
}
|
||||
|
||||
body {
|
||||
height: 100vh;
|
||||
width: auto;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
main {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: baseline;
|
||||
height: 90vh;
|
||||
width: 100vw;
|
||||
padding: 0;
|
||||
padding-top: 1.25rem;
|
||||
padding-bottom: 1.25rem;
|
||||
}
|
||||
|
||||
section {
|
||||
width: 95vw;
|
||||
}
|
||||
|
||||
.status {
|
||||
height: auto;
|
||||
margin: 0;
|
||||
}
|
||||
} */
|
||||
|
||||
a {
|
||||
color: var(--link-color);
|
||||
text-decoration: none;
|
||||
@ -170,10 +107,6 @@ main section p {
|
||||
line-height: 1.25;
|
||||
}
|
||||
|
||||
main section ul li {
|
||||
padding-bottom: 0.25rem;
|
||||
}
|
||||
|
||||
.photo-gallery-header {
|
||||
text-align: center;
|
||||
}
|
||||
@ -200,8 +133,3 @@ main section ul li {
|
||||
.gallery-text-left {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.nested-list {
|
||||
list-style-type: disc;
|
||||
margin-left: 2rem;
|
||||
}
|
||||
|
@ -1,27 +0,0 @@
|
||||
:root {
|
||||
--border-color: #db7093;
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
:root {
|
||||
--border-color: #474973;
|
||||
}
|
||||
}
|
||||
|
||||
.picrew-gallery {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
gap: 2rem;
|
||||
margin: 1.75rem;
|
||||
}
|
||||
|
||||
.picrew-gallery img {
|
||||
border: 4px solid var(--border-color);
|
||||
border-radius: 5%;
|
||||
}
|
||||
|
||||
.picrew-gallery,
|
||||
.picrew-gallery-header {
|
||||
text-align: center;
|
||||
}
|