diff options
| author | Martial Simon <msimon_fr@hotmail.com> | 2023-06-24 00:49:40 +0200 |
|---|---|---|
| committer | Martial Simon <msimon_fr@hotmail.com> | 2023-06-24 00:49:40 +0200 |
| commit | c8a9f7565dfe20ab117087503b8cfc920427fcb7 (patch) | |
| tree | c718fb3afa3890a1df321f29147c9efb1559c9c9 /style.css | |
| parent | c6ebb5a397be80ed4a1c0a9e96f3690709317ad0 (diff) | |
feat: added gigaillard, minor patches
Diffstat (limited to 'style.css')
| -rw-r--r-- | style.css | 41 |
1 files changed, 38 insertions, 3 deletions
@@ -19,13 +19,15 @@ body{ } .links{ - display: grid; + display: flex; justify-content: center; - grid-auto-flow: column; + flex-wrap: wrap; + /*grid-auto-flow: column;*/ } .link{ display: flex; + flex-wrap: wrap; flex-direction: column; justify-content:center; align-items:center; @@ -92,9 +94,42 @@ a{ } .footer{ - color: #aaaaaa; + animation-name: foot-anim; + animation-duration: 5s; + animation-iteration-count: infinite; +} + +@keyframes foot-anim{ + 0%{ + color: #84008c; + } + 12.5%{ + color: #3f0098; + } + 25%{ + color: #46bebc; + } + 37.5%{ + color: #2f8a00; + } + 50%{ + color: #fdff00; + } + 62.5%{ + color: #f48a00; + } + 75%{ + color: #f00100; + } + 87.5%{ + color: #f366b1; + } + 100%{ + color: #84008c; + } } + @font-face{ font-family:Cousine; src:url(./fonts/CousineNerdFont-Regular.ttf); |
