You are here

flickrstyle_zoom.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.
 */

.flickr-wrap .flickr-photo-img:hover,
img.flickr-photoset-img:hover {
  position: relative;
  z-index: 1;
  top: 1.4em;
  margin: 0;
  padding: 0;
  -webkit-transform: scale(/*variable:flickrstyle_scale*/1.85/*variable*/);
     -moz-transform: scale(/*variable:flickrstyle_scale*/1.85/*variable*/);
      -ms-transform: scale(/*variable:flickrstyle_scale*/1.85/*variable*/);
       -o-transform: scale(/*variable:flickrstyle_scale*/1.85/*variable*/);
          transform: scale(/*variable:flickrstyle_scale*/1.85/*variable*/);
  border: none;
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
}

.flickr-wrap {
  overflow: hidden;
}

.flickr-photo-img,
img.flickr-photoset-img {
  overflow: hidden;
  -webkit-transition: all 0.2s ease;
     -moz-transition: all 0.2s ease;
      -ms-transition: all 0.2s ease;
       -o-transition: all 0.2s ease;
          transition: all 0.2s ease;

  -o-object-fit: cover;
     object-fit: cover;
}

File

style/css/flickrstyle_zoom.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. .flickr-wrap .flickr-photo-img:hover,
  7. img.flickr-photoset-img:hover {
  8. position: relative;
  9. z-index: 1;
  10. top: 1.4em;
  11. margin: 0;
  12. padding: 0;
  13. -webkit-transform: scale(/*variable:flickrstyle_scale*/1.85/*variable*/);
  14. -moz-transform: scale(/*variable:flickrstyle_scale*/1.85/*variable*/);
  15. -ms-transform: scale(/*variable:flickrstyle_scale*/1.85/*variable*/);
  16. -o-transform: scale(/*variable:flickrstyle_scale*/1.85/*variable*/);
  17. transform: scale(/*variable:flickrstyle_scale*/1.85/*variable*/);
  18. border: none;
  19. -webkit-box-shadow: none;
  20. -moz-box-shadow: none;
  21. box-shadow: none;
  22. }
  23. .flickr-wrap {
  24. overflow: hidden;
  25. }
  26. .flickr-photo-img,
  27. img.flickr-photoset-img {
  28. overflow: hidden;
  29. -webkit-transition: all 0.2s ease;
  30. -moz-transition: all 0.2s ease;
  31. -ms-transition: all 0.2s ease;
  32. -o-transition: all 0.2s ease;
  33. transition: all 0.2s ease;
  34. -o-object-fit: cover;
  35. object-fit: cover;
  36. }