gradient fix, now goes from the top
authorIan Weller <ian@gaslightmedia.com>
Wed, 6 Apr 2016 13:35:57 +0000 (09:35 -0400)
committerIan Weller <ian@gaslightmedia.com>
Wed, 6 Apr 2016 13:35:57 +0000 (09:35 -0400)
css/app.css
scss/mixins/_gradient.scss

index 0ab9e12..2960d34 100644 (file)
@@ -6199,9 +6199,9 @@ img.alignleft {
   max-width: 100%;
   text-align: center; }
   #searchform div input.blogbutton {
-    background: -webkit-linear-gradient(left, #1999ce 45%, #107098 100%);
+    background: -webkit-linear-gradient(top, #1999ce 45%, #107098 100%);
     background: -moz-linear-gradient(center top, #1999ce 45%, #107098 100%);
-    background: -ms-linear-gradient(left, #1999ce 45%, #107098 100%); }
+    background: -ms-linear-gradient(top, #1999ce 45%, #107098 100%); }
 
 #blog-side-info {
   border-left: 1px solid grey;
@@ -7013,9 +7013,9 @@ header .searchform input.button {
       background-size: auto;
       margin-top: auto; } }
   .common-foot ul#quick-links {
-    background: -webkit-linear-gradient(left, #fdfcf3 45%, rgba(253, 252, 243, 0) 100%);
+    background: -webkit-linear-gradient(top, #fdfcf3 45%, rgba(253, 252, 243, 0) 100%);
     background: -moz-linear-gradient(center top, #fdfcf3 45%, rgba(253, 252, 243, 0) 100%);
-    background: -ms-linear-gradient(left, #fdfcf3 45%, rgba(253, 252, 243, 0) 100%);
+    background: -ms-linear-gradient(top, #fdfcf3 45%, rgba(253, 252, 243, 0) 100%);
     list-style: none;
     margin: 0;
     padding-bottom: 200px; }
index eb77d50..b72b9c0 100644 (file)
@@ -4,7 +4,7 @@
 */
 
 @mixin gradient($from, $to) {
-    background: -webkit-linear-gradient(left, $from 45%, $to 100%);
+    background: -webkit-linear-gradient(top, $from 45%, $to 100%);
     background: -moz-linear-gradient(center top, $from 45%, $to 100%);
-    background: -ms-linear-gradient(left, $from 45%, $to 100%);
+    background: -ms-linear-gradient(top, $from 45%, $to 100%);
 }