diff --git a/assets/base.css b/assets/base.css index 3a8968e..ced3089 100644 --- a/assets/base.css +++ b/assets/base.css @@ -42,7 +42,7 @@ li { /* lil text on the borders :3 */ -.title, .credit { +.title, .credit, .skip-notice { height: 24px; background-color: var(--c-bg); color: var(--c-title); @@ -63,6 +63,14 @@ li { color: var(--c-fg) } +.skip-notice { + bottom: 0; + right: 8px; + color: var(--c-fg); + background-color: transparent; + font-weight: normal +} + /* here are some @media rules to choose when to display ascii art */ .ascii, .splash { @@ -201,4 +209,19 @@ main { html { animation: 1.5s 1 linear splash-bg; animation-delay: 3s +} + +@keyframes splash-fg { + 0%, 100% { + color: var(--c-bg); + } +} + +.skip-notice { + animation-duration: 4.5s, 1.5s; + animation-iteration-count: 1, 1; + animation-timing-function: linear, linear; + animation-name: appear, splash-fg; + animation-delay: 0s, 3s; + visibility: hidden; } \ No newline at end of file diff --git a/index.html b/index.html index aa0a31d..9a518c1 100644 --- a/index.html +++ b/index.html @@ -64,6 +64,7 @@ site by Magdalunaa :3 + Click to skip \ No newline at end of file