Skip to content

Instantly share code, notes, and snippets.

@CoachBirgit
Created November 5, 2015 07:17
Show Gist options
  • Save CoachBirgit/7dcca4567fc94a2f5436 to your computer and use it in GitHub Desktop.
Save CoachBirgit/7dcca4567fc94a2f5436 to your computer and use it in GitHub Desktop.
DIVI: CTA BUTTONS - 50% Opacity Hover State
/*DIVI CTA BUTTONS - HOVER*/
.et_pb_promo_button, .et_pb_newsletter_button, a.et_pb_more_button, .et_pb_pricing_table_button {
-moz-transition: all 0.2s ease-in-out;
-webkit-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.et_pb_promo_button:hover, .et_pb_newsletter_button:hover, a.et_pb_more_button:hover, .et_pb_pricing_table_button:hover {
opacity:.75;
}
/* source: http://www.elegantthemes.com/blog/resources/divi-css-tricks */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment