Make background images fixed
authorSteve Sutton <steve@gaslightmedia.com>
Tue, 19 Aug 2014 20:08:32 +0000 (16:08 -0400)
committerSteve Sutton <steve@gaslightmedia.com>
Tue, 19 Aug 2014 20:08:32 +0000 (16:08 -0400)
adding no-repeat center center fixed to the background url line in css
for seasons.

css/fall.css
css/spring.css
css/summer.css
css/winter.css

index 8ae596d..cae16a1 100644 (file)
@@ -1,4 +1,4 @@
 body {
-  background: url("../assets/background-fall.jpg");
+  background: url("../assets/background-fall.jpg") no-repeat center center fixed;
   background-size: cover;
 }
\ No newline at end of file
index 01dd8d0..ce1749d 100644 (file)
@@ -1,4 +1,4 @@
 body {
-  background: url("../assets/background-spring.jpg");
+  background: url("../assets/background-spring.jpg") no-repeat center center fixed;
   background-size: cover;
 }
\ No newline at end of file
index 1920f25..32784e2 100644 (file)
@@ -1,4 +1,4 @@
 body {
-  background: url("../assets/background.jpg");
+  background: url("../assets/background.jpg") no-repeat center center fixed;
   background-size: cover;
 }
\ No newline at end of file
index b185cdb..9369fa1 100644 (file)
@@ -1,4 +1,4 @@
 body {
-  background: url("../assets/background-winter.jpg");
+  background: url("../assets/background-winter.jpg") no-repeat center center fixed;
   background-size: cover;
 }