From ca99ba3e83d289f517da98b2e2a0b74587bbbc16 Mon Sep 17 00:00:00 2001 From: Shannon Kay Date: Sat, 29 Apr 2023 23:53:39 -0700 Subject: [PATCH] updates --- .DS_Store | Bin 14340 -> 14340 bytes index.html | 2 +- now/index.html | 31 +++++++++++----------- test.css | 70 +++++++++++++++++++++++++++++++++++++++++++++++++ test.html | 37 ++++++++++++++++++++++++++ 5 files changed, 123 insertions(+), 17 deletions(-) create mode 100644 test.css create mode 100644 test.html diff --git a/.DS_Store b/.DS_Store index 4dc620026f4647801c05d5961fb0c0690187b811..107efe979f439ada86eff3ce6fcb0eb8271fdfce 100644 GIT binary patch delta 34 pcmZoEXerphBFN3iz`(%FkjIe9P(GPaQFyYFU^OGd=6Ql?Y5 - + diff --git a/now/index.html b/now/index.html index c7525cbe..106170b6 100644 --- a/now/index.html +++ b/now/index.html @@ -15,22 +15,21 @@

Currently

-

I'm enjoying playing around with my classic homepage, and my new blog built with Jekyll. I'm having fun brushing up on my modern CSS.

-

Beatrix turned 4 on April 4. We celebrated her birthday at the San Diego Zoo as part of our Spring Break fun. Guinevere finally got to do her birthday horse ride this week.

-

Updated April 7, 2023

-

Family

-

I've been married to Jerrod for 14 years. Jerrod got his 5 year sword from Blizzard! Our kids are Guinevere(12), Caspian(6), and Beatrix(4)

-
    -
  • Guinevere is in 5th Grade and started pointe in ballet this year. She's been accepted into her middle school's show choir for next year.
  • -
  • Caspian is in Kindergarten and loves video games, especially Mario and Minecraft.
  • -
  • Beatrix is a fun and funny little girl, she loves playing with dolls and collecting care bears.
  • -
-

Watching

-

We're loving season 3 of Picard!

-

We've also started rewatching some older Star Trek. We watched Star Trek II, III, and IV, and have started watching Star Trek: TNG.

-

Books

-

I recently finished A Psalm for the Wild-Built by Becky Chambers and The Quarantine Princess Diaries by Meg Cabot. Now I'm "between books" again.

-

I'm also continuing on my re-read of Percy Jackson books. I've finished the Percy Jackson and the Olympians series and the Heroes of Olympus series. Now I'm on the the second book in the Trials of Apollo series, The Dark Prophecy.

+

In a hotel while we wait for our bedroom to be reconstructed. We had some water damage back in February that's finally getting resolved. Some drywall was removed and the insides of the walls dried. We've chosen new paint and carpet to go into the room. Read more about this on my blog.

+

Updated April 27, 2023

+

Family

+

I've been married to Jerrod for 14 years. Jerrod got his 5 year sword from Blizzard! Our kids are Guinevere(12), Caspian(6), and Beatrix(4)

+
    +
  • Guinevere is in 5th Grade and started pointe in ballet this year. She's been accepted into her middle school's show choir for next year.
  • +
  • Caspian is in Kindergarten and loves video games, especially Mario and Minecraft.
  • +
  • Beatrix is a fun and funny little girl, she loves playing with dolls and collecting care bears.
  • +
+

Watching

+

I'm sad that Season 3 of Picard is over. I enjoyed it!

+

We've also been rewatching some older Star Trek. We watched Star Trek II, III, and IV, and now we're watching Star Trek: TNG.

+

Books

+

I recently read Persepolis, The Story of a Childhood by Marjane Satrapi.

+

I'm also continuing on my re-read of Percy Jackson books. I've finished the Percy Jackson and the Olympians series and the Heroes of Olympus series. Now I'm on the the third book in the Trials of Apollo series, The Burning Maze.

Currently Reading

diff --git a/test.css b/test.css new file mode 100644 index 00000000..044e99ef --- /dev/null +++ b/test.css @@ -0,0 +1,70 @@ +/* + Gradient text w/ bevel +*/ +.gradient-text { + background: linear-gradient(to right, var(--red), var(--yellow), var(--green), var(--cyan), var(--purple), var(--pink) 100%); + background-clip: text; + font-family: 'Verdana'; + font-weight: 400; + font-size: 7em; + text-shadow: 0.025em 0.025em 0.025em rgba(0,0,0,0.25); + -webkit-text-fill-color: transparent; + -webkit-text-stroke-color: var(--comment); + -webkit-text-stroke-width: 2px; +} + +.spoilers { + padding: 10pt; + border-style: solid; + border-width: 3pt; + border-radius: 10px; + border-image: linear-gradient(90deg, #f681ae, #f38282, #f7d54d, #6ed46e, #3ed3da, #a48ac9 100%); + border-image-slice: 1; + background-color: #282A36; + color: #ffb7c5; + font-weight: 400; +} + +.pink { + background: linear-gradient(183deg, #f9c2cc 10%, #FC8EAC 70%); +background-clip: text; +-webkit-background-clip: text; + font-family: 'Verdana'; + font-size: 7em; + text-shadow: 0.025em 0.025em 0.025em rgba(0,0,0,0.25); + -webkit-text-fill-color: transparent; + -webkit-text-stroke-color: #FC8EAC; + -webkit-text-stroke-width: 2px; +} + +.rainbow { + background: linear-gradient(90deg, #f681ae, #f38282, #f7d54d, #6ed46e, #3ed3da, #a48ac9 100%); +background-clip: text; +-webkit-background-clip: text; +color: transparent; + font-family: 'Verdana'; + font-size: 1.5em; + text-align: justify; +} + +.rainbow-head { + background: linear-gradient(90deg, #f681ae, #f38282, #f7d54d, #6ed46e, #3ed3da, #a48ac9 ); +background-clip: text; +-webkit-background-clip: text; +color: transparent; + font-family: 'Verdana'; + font-size: 7em; + text-align: center; +} + +:root { + --pink: #f681ae; + --red: #f38282; + --yellow: #f7d54d; + --green: #6ed46e; + --cyan: #3ed3da; + --purple: #a48ac9; + --comment: #a48ac9; + + +} \ No newline at end of file diff --git a/test.html b/test.html new file mode 100644 index 00000000..c0310c6b --- /dev/null +++ b/test.html @@ -0,0 +1,37 @@ + + + +Index Page + + + + + + + + + +

Shannon

+ +
+ + +
+

Shannon Kay

+

Shannon Kay

+
+ +
+

Shannon Kay

+

The No-Show was different and wonderful. The book is told from the perspectives of three different women; Siobhan, Miranda, and Jane. At the beginning of the The No-Show, I was most interested in the stories and backgrounds of the three women. Even when I wasn’t sure what to think about each woman’s interactions with “No-Show” Joseph Carter, I was invested in finding out more about the female characters.

+ +
+ +
+ + + + + \ No newline at end of file