Skip to content

Commit

Permalink
more mouseover effect
Browse files Browse the repository at this point in the history
  • Loading branch information
danielmdavis committed Apr 30, 2020
1 parent d278792 commit b781eae
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/client/styles/abstracts/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// -----------------------------------------------------------------------------

@import url('https://fonts.googleapis.com/css2?family=Alegreya&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Darker+Grotesque:wght@500;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Darker+Grotesque:wght@600;800&display=swap');


/// Regular font family
Expand Down
9 changes: 6 additions & 3 deletions app/client/styles/components/_Welcome.scss
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,15 @@ input[type="button"] {
}

// necessary ugliness to wrangle inherited :disabled effects
.form-fade-party,
.form-fade-party:hover {
opacity: .5;
.form-fade-party {
opacity: .25;
transition: opacity .33s;
text-align: center;
}
.form-fade-party:hover {
opacity: 0;
transition: opacity .05s;
}
.form-fade {
opacity: .5;
transition: opacity .33s;
Expand Down

0 comments on commit b781eae

Please sign in to comment.