diff options
| -rw-r--r-- | index.html | 2 | ||||
| -rw-r--r-- | styles.css | 4 | ||||
| -rw-r--r-- | styles.scss | 2 |
3 files changed, 4 insertions, 4 deletions
@@ -4,7 +4,7 @@ <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Leave a Tip</title> - <link rel="stylesheet" href="../styles.css"> + <link rel="stylesheet" href="./styles.css"> </head> <body> <section class="landing-page"> @@ -90,7 +90,7 @@ small { display: flex; justify-content: left; opacity: 0; - animation: reveal 1s ease-out forwards; + animation: reveal 0.6s ease-out forwards; } .menu-container .menu-wrapper li:nth-child(1) { animation-delay: 0.15s; @@ -107,7 +107,7 @@ small { .menu-container .menu-wrapper li a { text-decoration: none; font-weight: 500; - font-size: 15vmin; + font-size: 13vmin; color: #27327b; } diff --git a/styles.scss b/styles.scss index c41f4b2..4821665 100644 --- a/styles.scss +++ b/styles.scss @@ -97,7 +97,7 @@ small {font-size: 0.750rem; /* 12px */} display: flex; justify-content: left; opacity: 0; // Start items as invisible - animation: reveal 1s ease-out forwards; + animation: reveal 0.6s ease-out forwards; &:nth-child(1) { animation-delay: 0.15s; // Delay for the first item |
