19 lines
389 B
CSS
19 lines
389 B
CSS
html {
|
|
background: url('../img/animated.png');
|
|
background-color: rgb(49, 107, 223);
|
|
background-position: center bottom;
|
|
background-repeat: repeat-x;
|
|
background-attachment: fixed;
|
|
animation-name: animatedbackground;
|
|
animation-duration: 50s;
|
|
animation-iteration-count: infinite;
|
|
}
|
|
|
|
.content, #footer {
|
|
max-width: 1000px;
|
|
margin: auto;
|
|
}
|
|
|
|
.content {
|
|
margin-top: 105px;
|
|
} |