From c8a9f7565dfe20ab117087503b8cfc920427fcb7 Mon Sep 17 00:00:00 2001 From: Martial Simon Date: Sat, 24 Jun 2023 00:49:40 +0200 Subject: feat: added gigaillard, minor patches --- style.css | 41 ++++++++++++++++++++++++++++++++++++++--- 1 file changed, 38 insertions(+), 3 deletions(-) (limited to 'style.css') diff --git a/style.css b/style.css index 800f0fe..7283422 100644 --- a/style.css +++ b/style.css @@ -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); -- cgit v1.2.3