summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan <38150833+beigebeats@users.noreply.github.com>2023-12-22 22:21:46 -0800
committerEvan <38150833+beigebeats@users.noreply.github.com>2023-12-22 22:21:46 -0800
commit103d85972a9b2b6e5bbfe28a1ea9c204bb08e1a6 (patch)
treec2487f4c2ee5c745834ea71b7fa5e607def17db1
parent1264fdefab002ad5b9cf874eabad5104b84785c8 (diff)
adjusted animation delayHEADmaster
-rw-r--r--styles.css8
-rw-r--r--styles.scss8
2 files changed, 8 insertions, 8 deletions
diff --git a/styles.css b/styles.css
index ee10e21..0bafb9e 100644
--- a/styles.css
+++ b/styles.css
@@ -93,16 +93,16 @@ small {
animation: reveal 0.6s ease-out forwards;
}
.menu-container .menu-wrapper li:nth-child(1) {
- animation-delay: 0.15s;
+ animation-delay: 0.4s;
}
.menu-container .menu-wrapper li:nth-child(2) {
- animation-delay: 0.3s;
+ animation-delay: 0.55s;
}
.menu-container .menu-wrapper li:nth-child(3) {
- animation-delay: 0.45s;
+ animation-delay: 0.7s;
}
.menu-container .menu-wrapper li:nth-child(4) {
- animation-delay: 0.6s;
+ animation-delay: 0.85s;
}
.menu-container .menu-wrapper li a {
text-decoration: none;
diff --git a/styles.scss b/styles.scss
index 580a5bd..fb933e9 100644
--- a/styles.scss
+++ b/styles.scss
@@ -100,16 +100,16 @@ small {font-size: 0.750rem; /* 12px */}
animation: reveal 0.6s ease-out forwards;
&:nth-child(1) {
- animation-delay: 0.15s; // Delay for the first item
+ animation-delay: 0.4s; // Delay for the first item
}
&:nth-child(2) {
- animation-delay: 0.3s; // Delay for the second item
+ animation-delay: 0.55s; // Delay for the second item
}
&:nth-child(3) {
- animation-delay: 0.45s; // Delay for the third item
+ animation-delay: 0.7s; // Delay for the third item
}
&:nth-child(4) {
- animation-delay: 0.6s; // Delay for the fourth item
+ animation-delay: 0.85s; // Delay for the fourth item
}
a {