You are here

flickrstyle_caption_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-credit {
  /*Use the dedicated field at admin/config/media/flickr for a horizontal inside spacing value (padding/border).*/
  padding: 3px 7px;
  background: /*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-wrap {
  padding: 2px 7px 9px 2px;
}

File

style/css/flickrstyle_caption_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-credit {
  7. /*Use the dedicated field at admin/config/media/flickr for a horizontal inside spacing value (padding/border).*/
  8. padding: 3px 7px;
  9. background: /*variable:flickrstyle_bgcolor*/White/*variable*/;
  10. -webkit-box-shadow: 2px 2px 7px 3px /*variable:flickrstyle_shadow_color*/#a5a5a5/*variable*/;
  11. -moz-box-shadow: 2px 2px 7px 3px /*variable:flickrstyle_shadow_color*/#a5a5a5/*variable*/;
  12. box-shadow: 2px 2px 7px 3px /*variable:flickrstyle_shadow_color*/#a5a5a5/*variable*/;
  13. }
  14. .flickr-wrap {
  15. padding: 2px 7px 9px 2px;
  16. }