Skip to content

Commit

Permalink
Fix Kick - colors - based in Branding Guidelines
Browse files Browse the repository at this point in the history
  • Loading branch information
soypato committed Jun 29, 2023
1 parent 5dabc02 commit 2ddac4d
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 2 deletions.
16 changes: 14 additions & 2 deletions css/brands.css
Original file line number Diff line number Diff line change
Expand Up @@ -474,14 +474,26 @@ button:hover,
filter: brightness(90%);
}

/* Kick */
.button.button-kick {
background-color:#3d951b;
color: #fff
background-color:#000000;
color: #ffffff;
border: 1px solid #ffffff;
}
.button.button-kick:hover {
filter: brightness(90%);
}

/* Kick Alt */
.button.button-kick-alt {
background-color:#01e701;
color: #000;
}
.button.button-kick-alt:hover {
filter: brightness(90%);
}


/* Kickstarter */
.button.button-kickstarter {
color: #ffffff;
Expand Down
27 changes: 27 additions & 0 deletions images/icons/kick-alt.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,9 @@ <h1 role="heading">LittleLink</h1>
<!-- Kick -->
<a class="button button-kick" href="#" target="_blank" rel="noopener" role="button"><img class="icon" src="images/icons/kick.svg" alt="">Kick</a><br>

<!-- Kick Alt -->
<a class="button button-kick-alt" href="#" target="_blank" rel="noopener" role="button"><img class="icon" src="images/icons/kick-alt.svg" alt="">Kick</a><br>

<!-- Kickstarter -->
<a class="button button-kickstarter" href="#" target="_blank" rel="noopener" role="button"><img class="icon" src="images/icons/kickstarter.svg" alt="">Kickstarter</a><br>

Expand Down

0 comments on commit 2ddac4d

Please sign in to comment.