Darken link color, no feature borders
/ build_website (push) Successful in 9s Details
/ build_and_push_container (push) Has been skipped Details

This commit is contained in:
Michał Rudowicz 2025-02-27 18:47:00 +01:00
parent 3ba8295d8c
commit 9a89a956f6
2 changed files with 6 additions and 4 deletions

View File

@ -1,7 +1,5 @@
.feature {
height: 100%;
border: 1px solid $white-offset;
border-radius: 3px;
padding: 20px;
background-color: #ffffff;
display: flex;

View File

@ -3,8 +3,8 @@
// Colors
$primary: #FDB515;
$primary-dark: #a01b16;
$secondary: #f88379;
$primary-dark: darken($primary, 10%);
$secondary: darken($primary, 20%);
$black: #2f2f41;
$white: #ffffff;
$white-offset: #fff6f8;
@ -119,3 +119,7 @@ body {
code {
color: #000;
}
a {
color: #dd9902;
}