9 lines
216 B
CSS
9 lines
216 B
CSS
body {
|
|
background: url('/static/background.jpg') no-repeat center center fixed;
|
|
-moz-background-size: cover;
|
|
-webkit-background-size: cover;
|
|
-o-background-size: cover;
|
|
background-size: cover;
|
|
}
|
|
|