summaryrefslogtreecommitdiff
path: root/source/bower_components/foundation/scss/foundation/components/_magellan.scss
blob: fb10c7d1d7a1884311796077dd7cac0daf034c2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// Foundation by ZURB
// foundation.zurb.com
// Licensed under MIT Open Source

@import "global";

//
// @variables
//
$include-html-magellan-classes: $include-html-classes !default;

$magellan-bg: $white !default;
$magellan-padding: 10px !default;

@include exports("magellan") {
  @if $include-html-magellan-classes {

    #{data('magellan-expedition')}, #{data('magellan-expedition-clone')} {
      background: $magellan-bg;
      z-index: 50;
      min-width: 100%;
      padding: $magellan-padding;

      .sub-nav {
        margin-bottom: 0;
        dd { margin-bottom: 0; }
        a {
          line-height: 1.8em;
        }
      }
    }

  }
}