1
0
Fork 0
This repository has been archived on 2021-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
dennogumi.org-archive/_sass/foundation-components/_magellan.scss
Moritz »mo.« Sauer 87ca494ca0 Now with sass-support
2015-02-19 22:34:33 +01:00

34 lines
654 B
SCSS

// 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;
}
}
}
}
}