From c11e2421a84225da483b4072a7d6d09b4f5757f3 Mon Sep 17 00:00:00 2001 From: chase-west Date: Tue, 20 Feb 2024 15:05:01 -0800 Subject: [PATCH] updated --- index.html | 9 ++++++--- styles.css | 31 ++++++++++++++++++++++++++++++- 2 files changed, 36 insertions(+), 4 deletions(-) diff --git a/index.html b/index.html index f5236e8..04fe38d 100644 --- a/index.html +++ b/index.html @@ -35,13 +35,16 @@

Coding Reno

+ + +

-
+

Simple, weekly based projects.

@@ -54,7 +57,7 @@

Simple, weekly based projects.
-
+

Find a community.

@@ -67,7 +70,7 @@

Find a community. -
+

Present every week.

diff --git a/styles.css b/styles.css index 32b3d7e..d9097ef 100644 --- a/styles.css +++ b/styles.css @@ -66,7 +66,17 @@ body.dark main h1 { } main { - padding: 2rem; + padding: 2rem; + display: flex; + justify-content: center; + align-items: center; + min-height: 100vh; /* Ensure the section takes up the full height of the viewport */ + box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Light box shadow */ +} + +main svg { + position: absolute; /* Position the arrow absolutely */ + bottom: 20px; /* Adjust the distance from the bottom */ } main h1 { @@ -112,6 +122,25 @@ main h1 { transform: translateY(0); } } +.animate { + opacity: 0; +} + +.animate.slideInFromTop { + animation: slideInFromTop 1s ease-out forwards; +} + +.animate.slideInFromBottom { + animation: slideInFromBottom 1s ease-out forwards; +} + +.animate.slideInFromRight { + animation: slideInFromRight 1s ease-out forwards; +} + +.animate.slideInFromLeft { + animation: slideInFromLeft 1s ease-out forwards; +} footer {