You are here

flickrstyle_enlarge.css in Flickr 7

/**
 * The CSS values that are wrapped in '/*variable' comments are intended for use
 * by https://www.drupal.org/project/style_settings. Enable that module to
 * have those CSS variables exposed in the settings UI.
 */

img.flickr-photoset-img:hover,
.flickr-wrap:hover {
  z-index: 99;
  -webkit-transform: scale(/*variable:flickrstyle_scale*/1.05/*variable*/);
     -moz-transform: scale(/*variable:flickrstyle_scale*/1.05/*variable*/);
      -ms-transform: scale(/*variable:flickrstyle_scale*/1.05/*variable*/);
       -o-transform: scale(/*variable:flickrstyle_scale*/1.05/*variable*/);
          transform: scale(/*variable:flickrstyle_scale*/1.05/*variable*/);
}

img.flickr-photoset-img,
.flickr-wrap {
  -webkit-transition: all 0.15s ease;
     -moz-transition: all 0.15s ease;
      -ms-transition: all 0.15s ease;
       -o-transition: all 0.15s ease;
          transition: all 0.15s ease;
}

File

style/css/flickrstyle_enlarge.css
View source
  1. /**
  2. * The CSS values that are wrapped in '/*variable' comments are intended for use
  3. * by https://www.drupal.org/project/style_settings. Enable that module to
  4. * have those CSS variables exposed in the settings UI.
  5. */
  6. img.flickr-photoset-img:hover,
  7. .flickr-wrap:hover {
  8. z-index: 99;
  9. -webkit-transform: scale(/*variable:flickrstyle_scale*/1.05/*variable*/);
  10. -moz-transform: scale(/*variable:flickrstyle_scale*/1.05/*variable*/);
  11. -ms-transform: scale(/*variable:flickrstyle_scale*/1.05/*variable*/);
  12. -o-transform: scale(/*variable:flickrstyle_scale*/1.05/*variable*/);
  13. transform: scale(/*variable:flickrstyle_scale*/1.05/*variable*/);
  14. }
  15. img.flickr-photoset-img,
  16. .flickr-wrap {
  17. -webkit-transition: all 0.15s ease;
  18. -moz-transition: all 0.15s ease;
  19. -ms-transition: all 0.15s ease;
  20. -o-transition: all 0.15s ease;
  21. transition: all 0.15s ease;
  22. }