diff --git a/assets/FiraSans-Regular.ttf b/assets/FiraSans-Regular.ttf new file mode 100644 index 0000000..6f80647 Binary files /dev/null and b/assets/FiraSans-Regular.ttf differ diff --git a/assets/basketball.webp b/assets/basketball.webp new file mode 100644 index 0000000..e0514ba Binary files /dev/null and b/assets/basketball.webp differ diff --git a/assets/canoe.webp b/assets/canoe.webp new file mode 100644 index 0000000..8099411 Binary files /dev/null and b/assets/canoe.webp differ diff --git a/assets/firepit.webp b/assets/firepit.webp new file mode 100644 index 0000000..4df6f3a Binary files /dev/null and b/assets/firepit.webp differ diff --git a/assets/fireworks-display.webp b/assets/fireworks-display.webp new file mode 100644 index 0000000..6755f1e Binary files /dev/null and b/assets/fireworks-display.webp differ diff --git a/assets/fishing.webp b/assets/fishing.webp new file mode 100644 index 0000000..229cf60 Binary files /dev/null and b/assets/fishing.webp differ diff --git a/assets/hiking.webp b/assets/hiking.webp new file mode 100644 index 0000000..78bbfd7 Binary files /dev/null and b/assets/hiking.webp differ diff --git a/assets/pickleball.webp b/assets/pickleball.webp new file mode 100644 index 0000000..05be69d Binary files /dev/null and b/assets/pickleball.webp differ diff --git a/assets/sauna.webp b/assets/sauna.webp new file mode 100644 index 0000000..13dfe91 Binary files /dev/null and b/assets/sauna.webp differ diff --git a/assets/swimming.webp b/assets/swimming.webp new file mode 100644 index 0000000..4887ed4 Binary files /dev/null and b/assets/swimming.webp differ diff --git a/assets/volleyball.webp b/assets/volleyball.webp new file mode 100644 index 0000000..477673d Binary files /dev/null and b/assets/volleyball.webp differ diff --git a/components/header.html b/components/header.html index ae81e63..9c71dd6 100644 --- a/components/header.html +++ b/components/header.html @@ -22,7 +22,7 @@ > - + diff --git a/css/styles.css b/css/styles.css index 49c685a..907bf69 100644 --- a/css/styles.css +++ b/css/styles.css @@ -1,9 +1,9 @@ * { - font-family: "FiraCode", Arial, Helvetica, sans-serif; + font-family: "FiraSans", Arial, Helvetica, sans-serif; } @font-face { - font-family: "FiraCode"; - src: url("/assets/FiraCode-VariableFont_wght.ttf") format("truetype"); + font-family: "FiraSans"; + src: url("/assets/FiraSans-Regular.ttf") format("truetype"); } html { scroll-behavior: smooth; @@ -13,6 +13,7 @@ body { background: #ece3dd; margin: 0; padding: 0; + scroll-behavior: smooth; } header { padding: 0; @@ -70,6 +71,10 @@ main { padding: 10px; } .min-flex { + position: fixed; + bottom: 0; + left: 0; + width: 100%; -webkit-flex: 100%; flex: 100%; -webkit-flex-direction: row; @@ -82,8 +87,8 @@ main { flex-wrap: wrap; justify-content: space-evenly; background-color: #579c8b; + z-index: 5; } - .flex-row-items { -webkit-flex: content; flex: content; @@ -233,40 +238,73 @@ a { } .button-4 { align-items: center; - border-radius: 5px; - color: #6e564f; + border-radius: 20px; + color: white; cursor: pointer; display: -webkit-flex; display: flex; -webkit-flex: 0 0 auto; flex: 0 0 auto; font-family: Inter, sans-serif; - font-size: 18px; - font-weight: 200; + font-size: 25px; + font-weight: 700; justify-content: center; line-height: 1; margin: 1rem; outline: none; text-align: center; text-decoration: none; - transition: border 0.3s, color 0.3s; + transition: font-size 0.3s, color 0.3s; white-space: nowrap; - border: 2px solid #6e564f; user-select: none; -webkit-user-select: none; touch-action: manipulation; - padding-top: 0.5rem; - padding-bottom: 0.5rem; - padding-left: 5rem; - padding-right: 5rem; + padding-top: 1rem; + padding-bottom: 1rem; + padding-left: 3rem; + padding-right: 3rem; height: fit-content; position: relative; z-index: 1; - background-color: white; + background-color: #34a85a; } .button-4:hover { - border: 2px solid black; - color: black; + font-size: 30px; +} +.p-button { + align-items: center; + border-radius: 20px; + color: white; + cursor: pointer; + display: -webkit-flex; + display: flex; + -webkit-flex: 0 0 auto; + flex: 0 0 auto; + font-family: Inter, sans-serif; + font-size: 25px; + font-weight: 700; + justify-content: center; + line-height: 1; + margin: 1rem; + outline: none; + text-align: center; + text-decoration: none; + transition: font-size 0.3s, color 0.3s; + white-space: nowrap; + user-select: none; + -webkit-user-select: none; + touch-action: manipulation; + padding-top: 1rem; + padding-bottom: 1rem; + padding-left: 3rem; + padding-right: 3rem; + height: fit-content; + position: relative; + z-index: 1; + background-color: #34a85a; +} +.p-button:hover { + font-size: 30px; } .message-icon-container:hover { @@ -377,7 +415,7 @@ a { } #back-to-top.show { - bottom: 20px; + bottom: 100px; z-index: 5; } .hievents-widget { @@ -409,6 +447,17 @@ div.card > img { height: 360px; } +.blink_me { + animation: blinker 2s linear infinite; + font-size: larger; +} + +@keyframes blinker { + 50% { + opacity: 0; + } +} + /* Media query for mobile devices */ @media all and (max-width: 960px) { .nav-bar { @@ -460,12 +509,15 @@ div.card > img { z-index: 1; font-size: 2rem; font-weight: 400; + word-break: break-word; + padding: 5px; } h3 { font-size: 1.5rem; } p { font-size: 18px; + text-align: center; } .min-flex { -webkit-flex: 100%; @@ -488,4 +540,7 @@ div.card > img { width: 100%; height: 100%; } + .p-button { + display: none; + } } diff --git a/index.html b/index.html index e35cb2a..7a86783 100644 --- a/index.html +++ b/index.html @@ -56,78 +56,57 @@
-

SEPT 11-13th

-

Boulder Creek Retreat - Bonners Ferry, ID

-
+

EARLY BIRD SALE!

+ + Get Tickets
+

3-Day Christian Family Event in Idaho!

North Idaho's annual 3-day Christian family retreat featuring fun - sessions, tons of outdoor activities, and live music! + talks, tons of outdoor activities, and live music!

-
-
-

Last Year

- -

This Year:

- Speaker Application +
+

LIVE MUSIC

+

Encouraging Daily Praise & Worship by:

AP Collective

-

Folk/Pop Duo

+

+ Folk/Pop Duo | A couple vanlifers making music 🚐 +

William Toll

-

Folk Singer

+

Folk Singer | Folk songs for the true flock

+

+ Don't miss this affordable opportunity to worship alongside these + upcoming artists +

+

Secure Your Spot Today!

+ Get Tickets + +

SPEAKERS

+

Get Equipped. Be Encouraged. Find Community.

+

+ Shiloh Echo 2026 Features Family Friendly Topics from Christian + Experts on Privacy, Freedom, Off-Grid Homesteading, & Simple Living. +

Dr. Marcus Roe

- Author, Computer Scientist, Teacher, & Psychologist + Host of "Touch Grass", Author, Computer Scientist, Teacher, & + Psychologist

-
- -

Dr. Michael Lehman, ND

-

Naturopathic Physician.

- - -
-
-
+
+
+
+ +

Dr. Michael Lehman, ND

+

+ Naturopathic Doctor specializing in Lyme, Mold, Chronic + Inflammation, & Autoimmunity +

+ + +

Carl Tompkins

@@ -223,6 +225,12 @@

+

FOOD & FUN

+

FRESH LOCAL FOOD. 11 Outdoor Activities

+

+ Enjoy Locally Sourced Food and Over 11 Outdoor Activities Across 100+ + Acres over 3 Unforgettable Days +

@@ -238,7 +246,9 @@

Amiable Acres

- Unlock the skill of turning raw wool into beautifully spun yarn. + We are a small family farm specializing in small custom timber + frame products, and woolen goods from our sheep. We also raise + chickens for meat and eggs.

- -

TBA

+ +

Light the Night

+

+ Enjoy this inspiring evening fireworks show up close! +

+
+
+
+
+ +

Canoeing

+

+
+
+ +

Hiking

+

+
+
+ +

Swimming

+

+
+
+
+
+ +

Fishing

+

+
+
+ +

Basketball

+

+
+
+ +

Volleyball

+

+
+
+
+
+ +

Pickleball

+

+
+
+ +

Sauna

+

+
+
+ +

Fire Pit

@@ -287,30 +350,6 @@
-
-
-

About

-

Build community

-

- We're dedicated to cultivating and inspiring thriving Christian - communities with offgrid and simple living principles. -

-
-
- -
-
-

Details

-

Here's what you'll enjoy:

-

- Our retreat features engaging topics from experts on privacy, - freedom, off-grid, homesteading, and simple living. Enjoy a wide - range of outdoor activities over 100+ acres, and daily live music - that the whole family can enjoy. -

-
-
-
+
+

About

+

Build community

+

+ We're dedicated to cultivating and inspiring thriving Christian + communities with offgrid and simple living principles. +

+
+
+

Here's what you'll enjoy:

+

+ Our retreat features engaging topics from Christian experts on + privacy, freedom, off-grid, homesteading, and simple living. Enjoy a + wide range of outdoor activities over 100+ acres, and daily live + music that the whole family can enjoy. +

+

Event Schedule

@@ -363,6 +422,15 @@

+

Last Year

+

Event Map

@@ -433,16 +501,19 @@ email text + affiliate
- +