Fixing CSS background

This commit is contained in:
MarcThibeault 2014-11-11 22:19:52 -05:00
parent 9bb7a702a6
commit df49a3d346

View File

@ -22,10 +22,14 @@ html {
body { body {
font-size: 100%; font-size: 100%;
color: black;
padding: 0; padding: 0;
text-align:center; text-align:center;
background: url('../imgs/back.png') no-repeat fixed top center; background: url('../imgs/back.png') no-repeat fixed top center;
color: black; -webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
} }
hr { display: none } hr { display: none }