Skip to content

Commit

Permalink
fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
MrAndiGamesDev authored Sep 26, 2024
1 parent 8729bd9 commit c7a6d60
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions index.css
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
:root {
--text-color: #ffffff;
--background-color: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
--text-color: #6d6d6d;
}

body {
background-color: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
background: linear-gradient(-45deg, var(--gradient-color-1), var(--gradient-color-2), var(--gradient-color-3), var(--gradient-color-4));
background-size: cover;
color: var(--text-color);
font-family: Arial, sans-serif;
line-height: 1.6;
height: 100vh;
margin: 0;
padding: 0;
animation: gradient ease infinite;
animation-duration: 5s;
animation: gradient 15s ease infinite;
}

.container {
Expand Down Expand Up @@ -48,4 +51,4 @@ p {
100% {
background-position: 0% 50%;
}
}
}

0 comments on commit c7a6d60

Please sign in to comment.