diff options
author | Thomas Park <thomas@thomaspark.me> | 2014-05-09 19:12:22 -0400 |
---|---|---|
committer | Thomas Park <thomas@thomaspark.me> | 2014-05-09 19:12:22 -0400 |
commit | d2fa1dee3d679a319fc612cac23a783a8b298ccc (patch) | |
tree | 95929009f6f7588955d3474dcdfbb19765c7728e /assets/less | |
parent | 42de6948693d84e572cf207940570bca44568ffb (diff) |
make splash gradient less green
Diffstat (limited to 'assets/less')
-rw-r--r-- | assets/less/bootswatch.less | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/assets/less/bootswatch.less b/assets/less/bootswatch.less index e48ab603..5747aef5 100644 --- a/assets/less/bootswatch.less +++ b/assets/less/bootswatch.less @@ -71,13 +71,14 @@ footer { .splash { padding: 4em 0 2em; - background-color: #1c2533; - background: -webkit-linear-gradient(70deg,#080f1f 30%,#2b4b5a 87%,#435e67 100%); - background: -o-linear-gradient(70deg,#080f1f 30%,#2b4b5a 87%,#435e67 100%); - background: -ms-linear-gradient(70deg,#080f1f 30%,#2b4b5a 87%,#435e67 100%); - background: -moz-linear-gradient(70deg,#080f1f 30%,#2b4b5a 87%,#435e67 100%); - background: linear-gradient(20deg,#080f1f 30%,#2b4b5a 87%,#435e67 100%); - background-attachment: fixed; + background: #141d27; + background: -moz-linear-gradient(70deg, #141d27 0%, #233344 72%, #2c4055 89%, #39526e 100%); + background: -webkit-gradient(linear, left bottom, right top, color-stop(0%,#141d27), color-stop(72%,#233344), color-stop(89%,#2c4055), color-stop(100%,#39526e)); + background: -webkit-linear-gradient(70deg, #141d27 0%,#233344 72%,#2c4055 89%,#39526e 100%); + background: -o-linear-gradient(70deg, #141d27 0%,#233344 72%,#2c4055 89%,#39526e 100%); + background: -ms-linear-gradient(70deg, #141d27 0%,#233344 72%,#2c4055 89%,#39526e 100%); + background: linear-gradient(70deg, #141d27 0%,#233344 72%,#2c4055 89%,#39526e 100%); + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#141d27', endColorstr='#39526e',GradientType=1 ); color: #fff; text-align: center; |