(Update) Hero: Add blue overlay by default, instead of dropshadow

This commit is contained in:
0xfff 2016-10-08 21:13:49 +02:00
parent abaaea3161
commit f93ab0df9a
2 changed files with 2 additions and 1 deletions

View file

@ -10,7 +10,7 @@
overflow: hidden;
&:after {
content: '';
background-image: linear-gradient(to bottom, rgba(black, 0.5), transparent);
background-image: $gradient-default-overlay-blue;
position: absolute;
top: 0;
right: 0;

View file

@ -21,6 +21,7 @@ $color-green-light: #b9f4bc;
$gradient-dash-sky: linear-gradient(to top right, #3094E3, #247FC8 9%, #186AAC 30%, #163B80 73%, #001D38);
$gradient-atmosphere-blue-violet: linear-gradient(to top right,#4cddff,#3b9aca 10%,#2d6ca5 20%,#2a5291 27%,#283d81 35%,#222654 50%,#1e1635 63%,#0c0010 93%,#000);
$gradient-default-overlay-blue: linear-gradient(-225deg, rgba(#283d81,0.7) 0%, rgba(#1c75bc,0.8) 100%);
// for the style guide:
@function contrast-color($color, $dark, $light, $threshold: 50) {