diff options
| author | marcellus <msimon_fr@hotmail.com> | 2023-10-25 20:27:18 +0200 |
|---|---|---|
| committer | marcellus <msimon_fr@hotmail.com> | 2023-10-25 20:27:18 +0200 |
| commit | 808469f29b2d527da863097b2d4d3cbcd2baecb9 (patch) | |
| tree | 2d916037182fba1f60f90e2632aa4a181071334a /style.css | |
| parent | 9aa341382b246c26c95c893610b3984ba5ee2f14 (diff) | |
feat: error page tuned
Diffstat (limited to 'style.css')
| -rw-r--r-- | style.css | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -105,7 +105,7 @@ a.text-link::after{ background-color: rgba(220, 237, 200, 0.80); border-radius: 5px; border: 5px dotted #b4d545; - overflow: auto; + overflow-x: hidden; } .content h1, h2{ @@ -154,6 +154,10 @@ a.text-link::after{ content: "<<<"; } +.error{ + animation: error 1s step-start 0s infinite; +} + @keyframes spin{ from{ transform:rotate(0deg); @@ -208,6 +212,13 @@ a.text-link::after{ } } +@keyframes error{ + 50%{ + color: white; + background: black; + } +} + @font-face{ font-family:Cousine; src:url(./fonts/CousineNerdFont-Regular.ttf); |
