Skip to content
This repository has been archived by the owner on Feb 17, 2021. It is now read-only.

Commit

Permalink
Konsistentit värimuuttujat
Browse files Browse the repository at this point in the history
  • Loading branch information
ronilaukkarinen committed Sep 29, 2020
1 parent 96d73b4 commit e5ed437
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions _pages/made-by-dude-badge.md
Expand Up @@ -19,10 +19,9 @@ Sivujen tekijästä ilmoittaa <b>Made by Dude</b> -badge, joka lisätään asiak
<strong>Uusi tiedosto: sass/layout/_dude-badge.scss:</strong>

<pre class="language-scss"><code>// Color variables
$dark: #03061b;
$light: #fff;
$main: $color-main;
$logo-in-use: $dark;
$color-badge-dark: #03061b;
$color-badge-light: #fff;
$color-badge: $color-badge-dark;

.site-footer .container {
position: relative;
Expand All @@ -40,15 +39,15 @@ $logo-in-use: $dark;
}

a:hover .heart {
fill: $logo-in-use;
fill: $color-badge;
}

.fill {
fill: $logo-in-use;
fill: $color-badge;
}

.stroke {
stroke: $logo-in-use;
stroke: $color-badge;
}
}

Expand Down

0 comments on commit e5ed437

Please sign in to comment.