Advertisement
artemsemkin

Cassio theme: CTA section button

Mar 8th, 2022 (edited)
1,160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.90 KB | None | 0 0
  1. /* Ex. 1: Widget specific styles */
  2. .elementor-element-485b59a .section-cta .button {
  3.   background-color: blue;
  4.   color: #fff;
  5. }
  6.  
  7. .elementor-element-485b59a .section-cta .button:hover {
  8.   background-color: red;
  9.   color: #fff;
  10. }
  11.  
  12. .elementor-element-485b59a .section-cta .button:hover .button__icon {
  13.   background-color: darkred;
  14.   color: #fff;
  15. }
  16.  
  17. .elementor-element-485b59a .section-cta .button .button__icon {
  18.   background-color: darkblue;
  19.   color: #fff;
  20. }
  21.  
  22. /* Ex. 2: Page specific styles */
  23. .elementor-page-185 .section-cta .button {
  24.   background-color: blue;
  25.   color: #fff;
  26. }
  27.  
  28. .elementor-page-185 .section-cta .button:hover {
  29.   background-color: red;
  30.   color: #fff;
  31. }
  32.  
  33. .elementor-page-185 .section-cta .button:hover .button__icon {
  34.   background-color: darkred;
  35.   color: #fff;
  36. }
  37.  
  38. .elementor-page-185 .section-cta .button .button__icon {
  39.   background-color: darkblue;
  40.   color: #fff;
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement