Advertisement
belostotsky

Make "Favorites" icon larger

Jun 29th, 2015
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.05 KB | None | 0 0
  1. /* Makes "Favorites" icon larger */
  2. html#ecwid_html body#ecwid_body div.ecwid-favorite-view div.ecwid-favorite-enable-scaling  {
  3.     -webkit-transition: all 0.1s ease-out;
  4.     -moz-transition: all 0.1s ease-out;
  5.     -o-transition: all 0.1s ease-out;
  6.     -ms-transition: all 0.1s ease-out;
  7.     transition: all 0.1s ease-out;
  8.  
  9.     -webkit-transform: scale(1.38, 1.38);
  10.     -moz-transform: scale(1.38, 1.38);
  11.     -o-transform: scale(1.38, 1.38);
  12.     -ms-transform: scale(1.38, 1.38);
  13.     transform: scale(1.38, 1.38);
  14.     overflow: visible;
  15. }
  16.  
  17. html#ecwid_html body#ecwid_body div.ecwid-favorite-view:hover div.ecwid-favorite-enable-scaling  {
  18.     -webkit-transition: all 0.1s ease-out;
  19.     -moz-transition: all 0.1s ease-out;
  20.     -o-transition: all 0.1s ease-out;
  21.     -ms-transition: all 0.1s ease-out;
  22.     transition: all 0.1s ease-out;
  23.  
  24.     -webkit-transform: scale(1.48, 1.48);
  25.     -moz-transform: scale(1.48, 1.48);
  26.     -o-transform: scale(1.48, 1.48);
  27.     -ms-transform: scale(1.48, 1.48);
  28.     transform: scale(1.48, 1.48);
  29.     overflow: visible;
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement