You are here

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

span.flickr-wrap {
  margin: 0 8px 5px 0 !important;
  background-color: /*variable:flickrstyle_bgcolor*/White/*variable*/;
  -webkit-box-shadow: 2px 2px 7px 3px /*variable:flickrstyle_shadow_color*/#a5a5a5/*variable*/;
     -moz-box-shadow: 2px 2px 7px 3px /*variable:flickrstyle_shadow_color*/#a5a5a5/*variable*/;
          box-shadow: 2px 2px 7px 3px /*variable:flickrstyle_shadow_color*/#a5a5a5/*variable*/;
}

.flickr-photo-img {
  margin: 0;
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
}

span.flickr-credit {
  /*Reset the space between the image and caption box*/
  margin-top: 0;
  padding: 0 5px 3px;
}

File

style/css/flickrstyle_wrapcaption_shadow.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. span.flickr-wrap {
  7. margin: 0 8px 5px 0 !important;
  8. background-color: /*variable:flickrstyle_bgcolor*/White/*variable*/;
  9. -webkit-box-shadow: 2px 2px 7px 3px /*variable:flickrstyle_shadow_color*/#a5a5a5/*variable*/;
  10. -moz-box-shadow: 2px 2px 7px 3px /*variable:flickrstyle_shadow_color*/#a5a5a5/*variable*/;
  11. box-shadow: 2px 2px 7px 3px /*variable:flickrstyle_shadow_color*/#a5a5a5/*variable*/;
  12. }
  13. .flickr-photo-img {
  14. margin: 0;
  15. -webkit-box-shadow: none;
  16. -moz-box-shadow: none;
  17. box-shadow: none;
  18. }
  19. span.flickr-credit {
  20. /*Reset the space between the image and caption box*/
  21. margin-top: 0;
  22. padding: 0 5px 3px;
  23. }