diff options
| author | Martial Simon <msimon_fr@hotmail.com> | 2023-08-17 13:58:19 +0200 |
|---|---|---|
| committer | Martial Simon <msimon_fr@hotmail.com> | 2023-08-17 13:58:19 +0200 |
| commit | 0027e24ac619334b0578dc416575796360e29e7a (patch) | |
| tree | a235197d34a5ef9b7212af2224338cc889eda1fa /style.css | |
| parent | 604349ee3801226950b6bfe638dbbc9b674c76fe (diff) | |
feat: few minor features, added error page
Diffstat (limited to 'style.css')
| -rw-r--r-- | style.css | 20 |
1 files changed, 17 insertions, 3 deletions
@@ -85,6 +85,10 @@ a.text-link::after{ top: 3%; } +.marquee{ + animation: marquee 10s linear infinite; +} + .content-container{ margin: 20px 10%; display: grid; @@ -133,8 +137,8 @@ a.text-link::after{ } .footer{ - position: fixed; - top: 5px; + /*position: fixed; + top: 5px;*/ margin: 0 auto; background-color: rgba(220, 237, 200, 0.9); border-radius: 3px; @@ -143,7 +147,7 @@ a.text-link::after{ animation-duration: 6s; animation-iteration-count: infinite; animation-timing-function: linear; - z-index: -1; + /*z-index: -1;*/ } .footer::before, .footer::after{ @@ -188,6 +192,16 @@ a.text-link::after{ } } +@keyframes marquee{ + from{ + transform: translateX(100%); + } + to{ + transform: translateX(-100%); + } +} + + @keyframes heylisten{ 50%{ transform: scale(1.05,1.05); |
