summaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
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);