_magellan.scss 654 B

12345678910111213141516171819202122232425262728293031323334
  1. // Foundation by ZURB
  2. // foundation.zurb.com
  3. // Licensed under MIT Open Source
  4. @import 'global';
  5. //
  6. // @variables
  7. //
  8. $include-html-magellan-classes: $include-html-classes !default;
  9. $magellan-bg: $white !default;
  10. $magellan-padding: 10px !default;
  11. @include exports("magellan") {
  12. @if $include-html-magellan-classes {
  13. #{data('magellan-expedition')}, #{data('magellan-expedition-clone')} {
  14. background: $magellan-bg;
  15. min-width: 100%;
  16. padding: $magellan-padding;
  17. z-index: 50;
  18. .sub-nav {
  19. margin-bottom: 0;
  20. dd { margin-bottom: 0; }
  21. a {
  22. line-height: 1.8em;
  23. }
  24. }
  25. }
  26. }
  27. }