Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/ratchet.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/sass
diff options
context:
space:
mode:
authorconnors <connor.sears@github.com>2014-04-01 04:43:59 +0400
committerconnors <connor.sears@github.com>2014-04-01 04:43:59 +0400
commitdc02a6e65e19e7e929418846e4c5c5e851c9ca8d (patch)
tree927b07443f20878359ab76507ee57a3ad456df90 /sass
parentd1b1ff57aaca066045e6f80e428f4b5d21481a4f (diff)
header-gradient
Diffstat (limited to 'sass')
-rw-r--r--sass/docs.scss10
1 files changed, 8 insertions, 2 deletions
diff --git a/sass/docs.scss b/sass/docs.scss
index 11fe3b4..0224e73 100644
--- a/sass/docs.scss
+++ b/sass/docs.scss
@@ -63,8 +63,14 @@ body {
.docs-header,
.docs-sub-header {
position: relative;
- background-image: linear-gradient(45deg, #0a1855 0%,#da0024 100%);
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0a1855', endColorstr='#da0024', GradientType=0 );
+ background-color: #0a1855;
+ background-image: -moz-linear-gradient(45deg, #0a1855 0%, #da0024 100%);
+ background-image: -webkit-gradient(linear, left bottom, right top, color-stop(0%,#0a1855), color-stop(100%,#da0024));
+ background-image: -webkit-linear-gradient(45deg, #0a1855 0%,#da0024 100%);
+ background-image: -o-linear-gradient(45deg, #0a1855 0%,#da0024 100%);
+ background-image: -ms-linear-gradient(45deg, #0a1855 0%,#da0024 100%);
+ background-image: linear-gradient(45deg, #0a1855 0%,#da0024 100%);
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0a1855', endColorstr='#da0024',GradientType=1 );
}
.docs-header {
height: 100vh;