updated css background
This commit is contained in:
parent
a5332298a2
commit
17ef8eaf36
|
|
@ -638,6 +638,8 @@ html {
|
||||||
}
|
}
|
||||||
|
|
||||||
.loggedout {
|
.loggedout {
|
||||||
|
background: transparent url(/img/background.jpg) no-repeat scroll center top;
|
||||||
|
/*
|
||||||
background: url('/img/animated.png');
|
background: url('/img/animated.png');
|
||||||
background-color: rgb(49, 107, 223);
|
background-color: rgb(49, 107, 223);
|
||||||
background-position: center bottom;
|
background-position: center bottom;
|
||||||
|
|
@ -646,6 +648,7 @@ html {
|
||||||
animation-name: animatedbackground;
|
animation-name: animatedbackground;
|
||||||
animation-duration: 50s;
|
animation-duration: 50s;
|
||||||
animation-iteration-count: infinite;
|
animation-iteration-count: infinite;
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
|
|
|
||||||
|
|
@ -59,8 +59,11 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
.loggedout {
|
.loggedout {
|
||||||
|
background: transparent url(/img/backgrounddark.jpg) no-repeat scroll center top;
|
||||||
|
/*
|
||||||
background-image: url('../img/animateddark.png');
|
background-image: url('../img/animateddark.png');
|
||||||
background-color: rgb(1, 17, 48);
|
background-color: rgb(1, 17, 48);
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
|
|
||||||
.content {
|
.content {
|
||||||
|
|
|
||||||
|
|
@ -11,6 +11,18 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@keyframes animatedbackground {
|
||||||
|
from {
|
||||||
|
background-position-x: 0px;
|
||||||
|
animation-timing-function: linear;
|
||||||
|
}
|
||||||
|
|
||||||
|
to {
|
||||||
|
background-position-x: 2000px;
|
||||||
|
animation-timing-function: linear;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
html {
|
html {
|
||||||
|
|
|
||||||
|
|
@ -11,6 +11,17 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@keyframes animatedbackground {
|
||||||
|
from {
|
||||||
|
background-position-x: 0px;
|
||||||
|
animation-timing-function: linear;
|
||||||
|
}
|
||||||
|
|
||||||
|
to {
|
||||||
|
background-position-x: 2000px;
|
||||||
|
animation-timing-function: linear;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
html {
|
html {
|
||||||
|
|
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 29 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 106 KiB |
Loading…
Reference in New Issue