Darken link color, no feature borders
This commit is contained in:
parent
0d8bdaa320
commit
67152a9e9f
|
|
@ -1,7 +1,5 @@
|
||||||
.feature {
|
.feature {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
border: 1px solid $white-offset;
|
|
||||||
border-radius: 3px;
|
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
background-color: #ffffff;
|
background-color: #ffffff;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
|
||||||
|
|
@ -3,8 +3,8 @@
|
||||||
|
|
||||||
// Colors
|
// Colors
|
||||||
$primary: #FDB515;
|
$primary: #FDB515;
|
||||||
$primary-dark: #a01b16;
|
$primary-dark: darken($primary, 10%);
|
||||||
$secondary: #f88379;
|
$secondary: darken($primary, 20%);
|
||||||
$black: #2f2f41;
|
$black: #2f2f41;
|
||||||
$white: #ffffff;
|
$white: #ffffff;
|
||||||
$white-offset: #fff6f8;
|
$white-offset: #fff6f8;
|
||||||
|
|
@ -119,3 +119,7 @@ body {
|
||||||
code {
|
code {
|
||||||
color: #000;
|
color: #000;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #dd9902;
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue