cleaned css and changed how the animated background works
This commit is contained in:
parent
ee6930ef5d
commit
fb57b4fe6f
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue