summaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
authorMartial Simon <msimon_fr@hotmail.com>2023-06-24 00:49:40 +0200
committerMartial Simon <msimon_fr@hotmail.com>2023-06-24 00:49:40 +0200
commitc8a9f7565dfe20ab117087503b8cfc920427fcb7 (patch)
treec718fb3afa3890a1df321f29147c9efb1559c9c9 /style.css
parentc6ebb5a397be80ed4a1c0a9e96f3690709317ad0 (diff)
feat: added gigaillard, minor patches
Diffstat (limited to 'style.css')
-rw-r--r--style.css41
1 files changed, 38 insertions, 3 deletions
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);