max-width: 100%;
text-align: center; }
#searchform div input.blogbutton {
- background: -webkit-linear-gradient(top, #1999ce 15%, #107098 100%);
- background: -moz-linear-gradient(top, #1999ce 15%, #107098 100%);
- background: -ms-linear-gradient(top, #1999ce 15%, #107098 100%); }
+ background: -webkit-linear-gradient(top, #1999ce 5%, #107098 100%);
+ background: -moz-linear-gradient(top, #1999ce 5%, #107098 100%);
+ background: -ms-linear-gradient(top, #1999ce 5%, #107098 100%); }
#blog-side-info {
border-left: 1px solid grey;
left: 0px;
right: 0px;
top: 70%;
- background: -webkit-linear-gradient(top, transparent 15%, #FFFFFF 100%);
- background: -moz-linear-gradient(top, transparent 15%, #FFFFFF 100%);
- background: -ms-linear-gradient(top, transparent 15%, #FFFFFF 100%);
+ background: -webkit-linear-gradient(top, transparent 5%, #FFFFFF 100%);
+ background: -moz-linear-gradient(top, transparent 5%, #FFFFFF 100%);
+ background: -ms-linear-gradient(top, transparent 5%, #FFFFFF 100%);
background-repeat: repeat-x; }
@media (max-width: 640px) {
#head-img .gradient {
left: 0px;
right: 0px;
top: 75%;
- background: -webkit-linear-gradient(top, transparent 15%, #FFFFFF 100%);
- background: -moz-linear-gradient(top, transparent 15%, #FFFFFF 100%);
- background: -ms-linear-gradient(top, transparent 15%, #FFFFFF 100%);
+ background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 5%, #FFFFFF 100%);
+ background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 5%, #FFFFFF 100%);
+ background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 5%, #FFFFFF 100%);
background-repeat: repeat-x;
z-index: 0; }
@media (max-width: 640px) {
*/
@mixin gradient($from, $to) {
- background: -webkit-linear-gradient(top, $from 15%, $to 100%);
- background: -moz-linear-gradient( top, $from 15%, $to 100%);
- background: -ms-linear-gradient(top, $from 15%, $to 100%);
+ background: -webkit-linear-gradient(top, $from 5%, $to 100%);
+ background: -moz-linear-gradient( top, $from 5%, $to 100%);
+ background: -ms-linear-gradient(top, $from 5%, $to 100%);
}