cleaned css and changed how the animated background works

This commit is contained in:
Thomas G 2022-07-03 22:21:47 +10:00
parent ee6930ef5d
commit fb57b4fe6f
1 changed files with 451 additions and 448 deletions

View File

@ -165,6 +165,7 @@
border-width: 1px; border-width: 1px;
margin-bottom: 5px; margin-bottom: 5px;
} }
.FriendsContainerBox { .FriendsContainerBox {
border-radius: 1px; border-radius: 1px;
text-align: left; text-align: left;
@ -224,17 +225,19 @@ html {
src: url('Helvetica.ttf') format('truetype'), ; src: url('Helvetica.ttf') format('truetype'), ;
font-style: normal; font-style: normal;
background-color: rgb(49, 107, 223); background-color: rgb(49, 107, 223);
width: 100%;
height: 100%;
color: white; color: white;
animation-name: animatedbackground;
animation-duration: 50s;
animation-iteration-count: infinite;
background-image: url('../img/animated.png');
background-position: center 100%;
background-repeat: repeat-x;
background-attachment: fixed;
} }
body { body {
animation-name: animatedbackground;
animation-duration: 50s;
animation-iteration-count: infinite;
background: url('../img/animated.png');
background-position: center 100%;
background-repeat: repeat-x;
background-attachment: fixed;
margin-left: 0px; margin-left: 0px;
margin-right: 0px; margin-right: 0px;
margin-top: 0px; margin-top: 0px;