From 51d68935830e0f535c54d34070cc8c3fba89a480 Mon Sep 17 00:00:00 2001 From: Naomi Carrigan Date: Mon, 26 Jan 2026 19:56:07 -0800 Subject: [PATCH] feat: init --- README.md | 16 +- index.html | 468 +++++++++++++++++++++++++++++++++++++++ travel-agency/index.html | 68 ++++++ travel-agency/style.css | 58 +++++ 4 files changed, 597 insertions(+), 13 deletions(-) create mode 100644 index.html create mode 100644 travel-agency/index.html create mode 100644 travel-agency/style.css diff --git a/README.md b/README.md index ab93158..ee0110c 100644 --- a/README.md +++ b/README.md @@ -1,20 +1,10 @@ -# New Repository Template +# Silly Sites -This template contains all of our basic files for a new GitHub repository. There is also a handy workflow that will create an issue on a new repository made from this template, with a checklist for the steps we usually take in setting up a new repository. - -If you're starting a Node.JS project with TypeScript, we have a [specific template](https://github.com/naomi-lgbt/nodejs-typescript-template) for that purpose. - -## Readme - -Delete all of the above text (including this line), and uncomment the below text to use our standard readme template. - - +
🎈
+
🎪
+
🎨
+
🌈
+
+
🎭
+
🎯
+
🎡
+ +
+
+

Silly Sites Carnival

+

Welcome to Naomi's Collection of Delightfully Ridiculous Web Pages!

+

Where serious coding meets silly ideas 🎉

+
+ +
+ +
✈️
+

Dubious Travel Agency

+

Book your next adventure to places that definitely exist! We promise!

+
+ +
+
🔮
+

Mystery Project

+

Coming soon... What could it be?

+
+ +
+
🎲
+

Random Nonsense Generator

+

Future home of absolutely meaningless content!

+
+ +
+
🦄
+

Unicorn University

+

Learn skills that don't exist yet!

+
+
+ +
+

Made with 💜 and a healthy dose of silliness by Naomi

+

Found a bug? It's probably a feature! But you can report it anyway.

+
+
+ + + + + + + diff --git a/travel-agency/index.html b/travel-agency/index.html new file mode 100644 index 0000000..a61220d --- /dev/null +++ b/travel-agency/index.html @@ -0,0 +1,68 @@ + + + + + + + NHCarrigan Travel Agency + + + + +

NHCarrigan Travel Agency

+

+ Book your first class travel experience through NHCarrigan and visit far-off lands like Cyrodil, Hyrule, Night + City, and the Mushroom Kingdom! +

+

Packages

+

+ Adventure alone with our solo experiences, or join your friends for a proper raid! +

+ +

Top Itineraries

+
+ A woman with long hair and glasses sits relaxed in an armchair, barefoot, in a cozy library. A steaming teacup and open book are on a nearby table, creating a serene atmosphere. +
+ Acquire endless knowledge by exploring vast collections of lore. +
+
+
+ A smiling woman in a blue robe sits in a library with a treasure chest overflowing with gold and jewels. She holds a bowl of coins. Money bags and books surround her. +
+ Discover countless riches among ancient treasure. +
+
+
+ An anime-style illustration depicting four young women having a cozy evening together on a large beige sectional sofa in a dimly lit living room. From left to right: a blonde woman with glasses wearing a light blue top is lying down asleep with a pillow and blanket; a silver-haired woman in a dark shirt and shorts sits reading a book; a white-haired woman in pink pajamas sits in the middle holding a bowl of popcorn with a cheerful expression; and a green-haired woman in a green oversized shirt sits cross-legged on the right side of the couch. The coffee table in front holds snack packages, two blue mugs, and appears to have some books or magazines. A large flat-screen TV is visible on the left side of the image, and the room features dark blue walls with curtained windows and soft lighting creating an intimate, comfortable atmosphere perfect for a girls' night in. +
+ Give your group a chance to unwind with our luxury accommodations. +
+
+ + + + + + \ No newline at end of file diff --git a/travel-agency/style.css b/travel-agency/style.css new file mode 100644 index 0000000..1370256 --- /dev/null +++ b/travel-agency/style.css @@ -0,0 +1,58 @@ +* { + box-sizing: border-box; + margin: 0; + padding: 0; +} + +html { + text-align: center; + background: url("https://cdn.nhcarrigan.com/splash.png"); + background-size: cover; + background-position: center; +} + +body { + width: 95%; + max-width: 750px; + margin: auto; + text-align: left; + background-color: #ffddddaa; + text-align: center; + padding: 10px 20px; + margin: 15px auto; + border-radius: 30px; + color: #117799; +} + +figure { + border: 10px inset #553300; + margin-bottom: 5px; + background: linear-gradient(90deg, #664400, yellow, #664400); + filter: drop-shadow(10px 10px 10px); + color: black; +} + +img { + width: 100%; +} + +ul { + display: grid; + list-style-type: none; + grid-template-areas: "marker text" "marker text"; + gap: 10px; +} + +li { + grid-area: text; + text-align: left; +} + +.bullet { + grid-area: marker; + text-align: right; +} + +a { + color: inherit; +} \ No newline at end of file