You are here

flickrstyle_big.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: 99;
  top: 1.7em;
  -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-width: /*variable:flickrstyle_spacing*/2px/*variable*/;
  border-style: solid;
  border-color: transparent;
  background-color: /*variable:flickrstyle_bgcolor*/White/*variable*/;
}

.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;
  border: solid 2px transparent;
  background-color: transparent;

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

File

style/css/flickrstyle_big.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: 99;
  10. top: 1.7em;
  11. -webkit-transform: scale(/*variable:flickrstyle_scale*/1.85/*variable*/);
  12. -moz-transform: scale(/*variable:flickrstyle_scale*/1.85/*variable*/);
  13. -ms-transform: scale(/*variable:flickrstyle_scale*/1.85/*variable*/);
  14. -o-transform: scale(/*variable:flickrstyle_scale*/1.85/*variable*/);
  15. transform: scale(/*variable:flickrstyle_scale*/1.85/*variable*/);
  16. border-width: /*variable:flickrstyle_spacing*/2px/*variable*/;
  17. border-style: solid;
  18. border-color: transparent;
  19. background-color: /*variable:flickrstyle_bgcolor*/White/*variable*/;
  20. }
  21. .flickr-photo-img,
  22. img.flickr-photoset-img {
  23. overflow: hidden;
  24. -webkit-transition: all 0.2s ease;
  25. -moz-transition: all 0.2s ease;
  26. -ms-transition: all 0.2s ease;
  27. -o-transition: all 0.2s ease;
  28. transition: all 0.2s ease;
  29. border: solid 2px transparent;
  30. background-color: transparent;
  31. -o-object-fit: cover;
  32. object-fit: cover;
  33. }