foundation_apps_styles 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (70) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +9 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE.txt +21 -0
  5. data/README.md +41 -0
  6. data/Rakefile +13 -0
  7. data/bin/console +14 -0
  8. data/bin/setup +7 -0
  9. data/foundation_apps_styles.gemspec +24 -0
  10. data/lib/foundation_apps_styles.rb +6 -0
  11. data/lib/foundation_apps_styles/version.rb +3 -0
  12. data/vendor/assets/iconic/account.svg +44 -0
  13. data/vendor/assets/iconic/action.svg +38 -0
  14. data/vendor/assets/iconic/ban.svg +17 -0
  15. data/vendor/assets/iconic/bell.svg +22 -0
  16. data/vendor/assets/iconic/bookmark.svg +14 -0
  17. data/vendor/assets/iconic/cart.svg +35 -0
  18. data/vendor/assets/iconic/chevron.svg +28 -0
  19. data/vendor/assets/iconic/circle-check.svg +25 -0
  20. data/vendor/assets/iconic/circle-x.svg +25 -0
  21. data/vendor/assets/iconic/cog.svg +17 -0
  22. data/vendor/assets/iconic/comment-square.svg +14 -0
  23. data/vendor/assets/iconic/dashboard.svg +38 -0
  24. data/vendor/assets/iconic/document.svg +28 -0
  25. data/vendor/assets/iconic/envelope.svg +44 -0
  26. data/vendor/assets/iconic/flag.svg +24 -0
  27. data/vendor/assets/iconic/home.svg +28 -0
  28. data/vendor/assets/iconic/lock.svg +55 -0
  29. data/vendor/assets/iconic/magnifying-glass.svg +26 -0
  30. data/vendor/assets/iconic/person.svg +62 -0
  31. data/vendor/assets/iconic/reload.svg +19 -0
  32. data/vendor/assets/iconic/share-boxed.svg +17 -0
  33. data/vendor/assets/iconic/star.svg +14 -0
  34. data/vendor/assets/iconic/thumb.svg +38 -0
  35. data/vendor/assets/iconic/zoom.svg +56 -0
  36. data/vendor/assets/stylesheets/_global.scss +131 -0
  37. data/vendor/assets/stylesheets/_includes.scss +33 -0
  38. data/vendor/assets/stylesheets/_settings.scss +614 -0
  39. data/vendor/assets/stylesheets/components/_accordion.scss +72 -0
  40. data/vendor/assets/stylesheets/components/_action-sheet.scss +265 -0
  41. data/vendor/assets/stylesheets/components/_block-list.scss +360 -0
  42. data/vendor/assets/stylesheets/components/_button-group.scss +197 -0
  43. data/vendor/assets/stylesheets/components/_button.scss +205 -0
  44. data/vendor/assets/stylesheets/components/_card.scss +93 -0
  45. data/vendor/assets/stylesheets/components/_extras.scss +54 -0
  46. data/vendor/assets/stylesheets/components/_forms.scss +460 -0
  47. data/vendor/assets/stylesheets/components/_grid.scss +422 -0
  48. data/vendor/assets/stylesheets/components/_iconic.scss +95 -0
  49. data/vendor/assets/stylesheets/components/_label.scss +134 -0
  50. data/vendor/assets/stylesheets/components/_list.scss +19 -0
  51. data/vendor/assets/stylesheets/components/_menu-bar.scss +382 -0
  52. data/vendor/assets/stylesheets/components/_modal.scss +129 -0
  53. data/vendor/assets/stylesheets/components/_motion.scss +525 -0
  54. data/vendor/assets/stylesheets/components/_notification.scss +207 -0
  55. data/vendor/assets/stylesheets/components/_off-canvas.scss +169 -0
  56. data/vendor/assets/stylesheets/components/_panel.scss +134 -0
  57. data/vendor/assets/stylesheets/components/_popup.scss +68 -0
  58. data/vendor/assets/stylesheets/components/_switch.scss +134 -0
  59. data/vendor/assets/stylesheets/components/_tabs.scss +100 -0
  60. data/vendor/assets/stylesheets/components/_title-bar.scss +135 -0
  61. data/vendor/assets/stylesheets/components/_typography.scss +345 -0
  62. data/vendor/assets/stylesheets/components/_utilities.scss +160 -0
  63. data/vendor/assets/stylesheets/foundation-apps.css +6146 -0
  64. data/vendor/assets/stylesheets/foundation.scss +50 -0
  65. data/vendor/assets/stylesheets/helpers/_breakpoints.scss +154 -0
  66. data/vendor/assets/stylesheets/helpers/_functions.scss +343 -0
  67. data/vendor/assets/stylesheets/helpers/_images.scss +19 -0
  68. data/vendor/assets/stylesheets/helpers/_mixins.scss +123 -0
  69. data/vendor/assets/stylesheets/vendor/_normalize.scss +424 -0
  70. metadata +140 -0
@@ -0,0 +1,68 @@
1
+ /*
2
+ POPUP
3
+ -----
4
+
5
+ A floating container that can anchor to any other on-screen element, and contain any content, including grid blocks or panels.
6
+ */
7
+
8
+ /// @Foundation.settings
9
+ // Popup
10
+ $popup-width: rem-calc(300) !default;
11
+ $popup-background: #fff !default;
12
+ $popup-border: 0 !default;
13
+ $popup-radius: 0 !default;
14
+ $popup-shadow: 0 0 10px rgba(#000, 0.25) !default;
15
+ ///
16
+
17
+ %popup {
18
+ position: absolute;
19
+ z-index: 1000;
20
+ opacity: 0;
21
+ overflow: hidden;
22
+ transition: opacity 0.25s ease-out;
23
+ pointer-events: none;
24
+
25
+ &.tether-enabled {
26
+ opacity: 1;
27
+ pointer-events: auto;
28
+ }
29
+ }
30
+
31
+ @mixin popup-layout(
32
+ $width: $popup-width
33
+ ) {
34
+ width: $popup-width;
35
+ }
36
+ @mixin popup-style(
37
+ $background: $popup-background,
38
+ $color: #000,
39
+ $radius: $popup-radius,
40
+ $shadow: $popup-shadow,
41
+ $border: $popup-border
42
+ ) {
43
+ background: $background;
44
+ border-radius: $radius;
45
+ box-shadow: $shadow;
46
+ border: $border;
47
+ }
48
+
49
+ @mixin popup(
50
+ $width: $popup-width,
51
+ $background: $popup-background,
52
+ $radius: $popup-radius,
53
+ $shadow: $popup-shadow,
54
+ $border: $popup-border
55
+ ) {
56
+ @extend %popup;
57
+ @include popup-layout($width);
58
+ @include popup-style($background, isitlight($background), $radius, $shadow, $border);
59
+ }
60
+
61
+ @include exports(popup) {
62
+ .popup {
63
+ @include popup;
64
+
65
+ &.dark { @include popup-style($dark-color, #fff); }
66
+ &.primary { @include popup-style($primary-color, isitlight($primary-color)); }
67
+ }
68
+ }
@@ -0,0 +1,134 @@
1
+ /*
2
+ SWITCH
3
+ ------
4
+ */
5
+
6
+ /// @Foundation.settings
7
+ // Switch
8
+ $switch-width: rem-calc(50) !default;
9
+ $switch-height: rem-calc(32) !default;
10
+ $switch-background: #ccc !default;
11
+ $switch-background-active: $primary-color !default;
12
+ $switch-border: 0 !default;
13
+ $switch-radius: 9999px !default;
14
+ $switch-animation-speed: 0.15s !default;
15
+
16
+ $switch-paddle-color: white !default;
17
+ $switch-paddle-offset: 4px !default;
18
+ ///
19
+
20
+ %switch {
21
+ position: relative;
22
+ overflow: hidden;
23
+ display: inline-block;
24
+
25
+ > input {
26
+ position: absolute;
27
+ left: -9999px;
28
+ outline: none;
29
+ }
30
+
31
+ > label {
32
+ -ms-touch-action: manipulation;
33
+ touch-action: manipulation;
34
+ display: block;
35
+ width: 100%;
36
+ height: 100%;
37
+ cursor: pointer;
38
+ margin: 0;
39
+
40
+ // Paddle
41
+ &::after {
42
+ content: '';
43
+ display: block;
44
+ position: absolute;
45
+ top: 0;
46
+ left: 0;
47
+ }
48
+ }
49
+
50
+ input + label {
51
+ margin-left: 0;
52
+ }
53
+ }
54
+
55
+ /*
56
+ Defines the dimmensions of the switch.
57
+
58
+ $width - width of the switch.
59
+ $height - height of the switch.
60
+ */
61
+ @mixin switch-layout(
62
+ $width: $switch-width,
63
+ $height: $switch-height
64
+ ) {
65
+ width: $width;
66
+ height: $height;
67
+
68
+ > label {
69
+ &::after {
70
+ width: $height;
71
+ height: $height;
72
+ }
73
+ }
74
+ input:checked + label {
75
+ &::after {
76
+ left: $width - $height;
77
+ }
78
+ }
79
+ }
80
+
81
+ @mixin switch-style(
82
+ $background: $switch-background,
83
+ $background-active: $switch-background-active,
84
+ $border: $switch-border,
85
+ $radius: $switch-radius,
86
+ $paddle-color: $switch-paddle-color,
87
+ $paddle-offset: $switch-paddle-offset,
88
+ $animation-speed: $switch-animation-speed
89
+ ) {
90
+ @if hasvalue($border) {
91
+ border: $border;
92
+ }
93
+ border-radius: $radius;
94
+
95
+ > label {
96
+ background: $background;
97
+
98
+ &::after {
99
+ background: $paddle-color;
100
+ border-radius: $radius;
101
+ transition: left $animation-speed ease-out;
102
+
103
+ @if hasvalue($paddle-offset) {
104
+ border: $paddle-offset solid $background
105
+ }
106
+ }
107
+ }
108
+
109
+ input:checked + label {
110
+ background: $background-active;
111
+ margin: 0;
112
+
113
+ &::after {
114
+ @if hasvalue($paddle-offset) {
115
+ border-color: $background-active;
116
+ }
117
+ }
118
+ }
119
+ }
120
+
121
+ @mixin switch() {
122
+ @extend %switch;
123
+ @include switch-layout;
124
+ @include switch-style;
125
+ }
126
+
127
+ @include exports(switch) {
128
+ .switch {
129
+ @include switch;
130
+
131
+ &.small { @include switch-layout(rem-calc(40), rem-calc(26)); }
132
+ &.large { @include switch-layout(rem-calc(60), rem-calc(38)); }
133
+ }
134
+ }
@@ -0,0 +1,100 @@
1
+ /*
2
+ TABS
3
+ ----
4
+ */
5
+
6
+ /// @Foundation.settings
7
+ // Tabs
8
+ $tabstrip-background: transparent !default;
9
+
10
+ $tab-title-background: $gray-light !default;
11
+ $tab-title-background-hover: smartscale($tab-title-background, 5%) !default;
12
+ $tab-title-background-active: smartscale($tab-title-background, 3%) !default;
13
+ $tab-title-color: isitlight($tab-title-background) !default;
14
+ $tab-title-color-active: $tab-title-color !default;
15
+
16
+ $tab-title-padding: $global-padding !default;
17
+ $tab-content-padding: $global-padding !default;
18
+ ///
19
+
20
+ @mixin tabstrip(
21
+ $orientation: horizontal,
22
+ $background: $tabstrip-background
23
+ ) {
24
+ /*
25
+ Container styles
26
+ */
27
+ display: flex;
28
+ background: $background;
29
+
30
+ @if $orientation == vertical {
31
+ flex-flow: column nowrap;
32
+ }
33
+ @else {
34
+ flex-flow: row wrap;
35
+ }
36
+ }
37
+
38
+ @mixin tabstrip-item(
39
+ $background: $tab-title-background,
40
+ $background-hover: $tab-title-background-hover,
41
+ $background-active: $tab-title-background-active,
42
+ $color: $tab-title-color,
43
+ $color-active: $tab-title-color-active,
44
+ $padding: $tab-title-padding
45
+ ) {
46
+ background: $background;
47
+ padding: $padding;
48
+ line-height: 1;
49
+ margin: 0;
50
+ flex: 0 1 auto;
51
+ cursor: pointer;
52
+ color: $color;
53
+
54
+ &.is-active {
55
+ background: $background-active;
56
+ color: $color-active;
57
+
58
+ &:hover {
59
+ background: $background-hover;
60
+ }
61
+ }
62
+ &:hover {
63
+ background: $background-hover;
64
+ }
65
+ }
66
+
67
+ @mixin tab-content(
68
+ $padding: $tab-content-padding
69
+ ) {
70
+ padding: $padding;
71
+ }
72
+
73
+ @mixin tab-content-item {
74
+ display: none;
75
+ &.is-active {
76
+ display: block;
77
+ }
78
+ }
79
+
80
+ @include exports(tabs) {
81
+ .tabs {
82
+ @include tabstrip(horizontal);
83
+
84
+ &.vertical {
85
+ @include tabstrip(vertical);
86
+ }
87
+
88
+ .tab-item {
89
+ @include tabstrip-item;
90
+ }
91
+ }
92
+
93
+ .tab-contents {
94
+ @include tab-content;
95
+
96
+ .tab-content {
97
+ @include tab-content-item;
98
+ }
99
+ }
100
+ }
@@ -0,0 +1,135 @@
1
+ /*
2
+ TITLE BAR
3
+ ---------
4
+
5
+ A navigational component which can display the current screen the user is on, along with additional controls or menu items.
6
+
7
+ The title bar includes classes to create center, left, and right sections, which can be used in any combination. However, in the markup, the sections must come in this order:
8
+ - Center
9
+ - Left
10
+ - Right
11
+ */
12
+
13
+ /// @Foundation.settings
14
+ // Title Bar
15
+ $titlebar-center-width: 50% !default;
16
+ $titlebar-side-width: (100% - $titlebar-center-width) / 2 !default;
17
+ $titlebar-background: #eee !default;
18
+ $titlebar-color: #000 !default;
19
+ $titlebar-border: 1px solid #ccc !default;
20
+ $titlebar-padding: $global-padding !default;
21
+ $titlebar-item-classes: (
22
+ center: 'center',
23
+ left: 'left',
24
+ right: 'right',
25
+ title: 'title',
26
+ ) !default;
27
+ ///
28
+
29
+ %title-bar {
30
+ $center: map-get($titlebar-item-classes, center);
31
+ $left: map-get($titlebar-item-classes, left);
32
+ $right: map-get($titlebar-item-classes, right);
33
+ $title: map-get($titlebar-item-classes, title);
34
+
35
+ display: flex;
36
+ flex: 0 0 auto;
37
+ align-items: center;
38
+ justify-content: flex-start;
39
+ overflow: visible;
40
+
41
+ // Denotes the title of the bar
42
+ .#{$title} {
43
+ font-weight: bold;
44
+ }
45
+
46
+ // Denotes left, right, and center sections of the bar
47
+ .#{$left}, .#{$center}, .#{$right} {
48
+ display: block;
49
+ white-space: nowrap;
50
+ overflow: visible;
51
+
52
+ // If only one section is in use, stretch it all the way out
53
+ &:first-child:last-child {
54
+ flex: 1;
55
+ margin: 0;
56
+ }
57
+ }
58
+
59
+ // Left always comes first, then center, then right
60
+ // The left and right sections have the same width
61
+ .#{$left} {
62
+ order: 1;
63
+ flex: 0 0 $titlebar-side-width;
64
+ }
65
+ .#{$center} {
66
+ order: 2;
67
+ flex: 0 0 $titlebar-center-width;
68
+ text-align: center;
69
+ }
70
+ .#{$right} {
71
+ order: 3;
72
+ flex: 0 0 $titlebar-side-width;
73
+ text-align: right;
74
+ }
75
+
76
+ // If only left and right are in use, stretch them both out equally
77
+ .#{$left}:first-child {
78
+ flex: 1 1 auto;
79
+ }
80
+ .#{$left}:first-child + .#{$right}:last-child {
81
+ flex: 1 1 auto;
82
+ }
83
+
84
+ // If only center and right are in use, shift the center section into the right position
85
+ .#{$center}:first-child:not(:last-child) {
86
+ margin-left: $titlebar-side-width;
87
+ }
88
+ // If only center and left are in use, override the above style
89
+ .#{$center} + .#{$left} {
90
+ margin-right: -($titlebar-side-width);
91
+ }
92
+ }
93
+
94
+ @mixin title-bar-style(
95
+ $background: $titlebar-background,
96
+ $color: $titlebar-color,
97
+ $border: $titlebar-border,
98
+ $padding: $titlebar-padding
99
+ ) {
100
+ background: $background;
101
+ color: $color;
102
+ padding: $padding;
103
+ border-bottom: $border;
104
+ }
105
+
106
+ @mixin title-bar(
107
+ $background: $titlebar-background,
108
+ $color: $titlebar-color,
109
+ $border: $titlebar-border,
110
+ $padding: $titlebar-padding
111
+ ) {
112
+ @extend %title-bar;
113
+ @include title-bar-style($background, $color, $border, $padding);
114
+ }
115
+
116
+ @include exports(title-bar) {
117
+ .title-bar {
118
+ @include title-bar;
119
+
120
+ &.primary {
121
+ @include title-bar-style($primary-color, isitlight($primary-color));
122
+ a, a:hover { color: isitlight($primary-color); }
123
+ @if using(iconic) { .iconic { @include color-icon(isitlight($primary-color)); } }
124
+ }
125
+ &.dark {
126
+ @include title-bar-style($dark-color, #fff);
127
+ a, a:hover { color: #fff; }
128
+ @if using(iconic) { .iconic { @include color-icon(#fff); } }
129
+ }
130
+ }
131
+ .title-bar-bottom {
132
+ border-bottom: 0;
133
+ border-top: $titlebar-border;
134
+ }
135
+ }
@@ -0,0 +1,345 @@
1
+ /*
2
+ TYPOGRAPHY
3
+ ----------
4
+
5
+ Includes typographic resets for many common elements, and a few helper classes.
6
+ - Headers
7
+ - Subheaders
8
+ - Lead paragraphs
9
+ - Ordered/unordered lists
10
+ - Code samples
11
+ - Anchors
12
+ - Dividers
13
+ - Blockquotes
14
+ - Acronyms
15
+ */
16
+
17
+ /// @Foundation.settings
18
+ // Typography
19
+ // We use these to control header font styles
20
+ $header-font-family: $body-font-family !default;
21
+ $header-font-weight: $font-weight-normal !default;
22
+ $header-font-style: $font-weight-normal !default;
23
+ $header-font-color: #222 !default;
24
+ $header-line-height: 1.4 !default;
25
+ $header-top-margin: .2rem !default;
26
+ $header-bottom-margin: .5rem !default;
27
+ $header-text-rendering: optimizeLegibility !default;
28
+
29
+ // We use these to control header font sizes
30
+ $h1-font-size: rem-calc(44) !default;
31
+ $h2-font-size: rem-calc(37) !default;
32
+ $h3-font-size: rem-calc(27) !default;
33
+ $h4-font-size: rem-calc(23) !default;
34
+ $h5-font-size: rem-calc(18) !default;
35
+ $h6-font-size: 1rem !default;
36
+
37
+ // We use these to control header size reduction on small screens
38
+ $h1-font-reduction: rem-calc(10) !default;
39
+ $h2-font-reduction: rem-calc(10) !default;
40
+ $h3-font-reduction: rem-calc(5) !default;
41
+ $h4-font-reduction: rem-calc(5) !default;
42
+ $h5-font-reduction: 0 !default;
43
+ $h6-font-reduction: 0 !default;
44
+
45
+ // These control how subheaders are styled.
46
+ $subheader-line-height: 1.4 !default;
47
+ $subheader-font-color: scale-color($header-font-color, $lightness: 35%) !default;
48
+ $subheader-font-weight: $font-weight-normal !default;
49
+ $subheader-top-margin: .2rem !default;
50
+ $subheader-bottom-margin: .5rem !default;
51
+
52
+ // A general <small> styling
53
+ $small-font-size: 60% !default;
54
+ $small-font-color: scale-color($header-font-color, $lightness: 35%) !default;
55
+
56
+ // We use these to style paragraphs
57
+ $paragraph-font-family: inherit !default;
58
+ $paragraph-font-weight: $font-weight-normal !default;
59
+ $paragraph-font-size: 1rem !default;
60
+ $paragraph-line-height: 1.6 !default;
61
+ $paragraph-margin-bottom: rem-calc(20) !default;
62
+ $paragraph-aside-font-size: rem-calc(14) !default;
63
+ $paragraph-aside-line-height: 1.35 !default;
64
+ $paragraph-aside-font-style: italic !default;
65
+ $paragraph-text-rendering: optimizeLegibility !default;
66
+
67
+ // We use these to style <code> tags
68
+ $code-color: grayscale($primary-color) !default;
69
+ $code-font-family: Consolas, 'Liberation Mono', Courier, monospace !default;
70
+ $code-font-weight: $font-weight-normal !default;
71
+ $code-background-color: scale-color($secondary-color, $lightness: 70%) !default;
72
+ $code-border-size: 1px !default;
73
+ $code-border-style: solid !default;
74
+ $code-border-color: scale-color($code-background-color, $lightness: -10%) !default;
75
+ $code-padding: rem-calc(2) rem-calc(5) rem-calc(1) !default;
76
+
77
+ // We use these to style anchors
78
+ $anchor-text-decoration: none !default;
79
+ $anchor-text-decoration-hover: none !default;
80
+ $anchor-font-color: $primary-color !default;
81
+ $anchor-font-color-hover: scale-color($anchor-font-color, $lightness: -14%) !default;
82
+
83
+ // We use these to style the <hr> element
84
+ $hr-border-width: 1px !default;
85
+ $hr-border-style: solid !default;
86
+ $hr-border-color: #ddd !default;
87
+ $hr-margin: rem-calc(20) !default;
88
+
89
+ // We use these to style lists
90
+ $list-font-family: $paragraph-font-family !default;
91
+ $list-font-size: $paragraph-font-size !default;
92
+ $list-line-height: $paragraph-line-height !default;
93
+ $list-margin-bottom: $paragraph-margin-bottom !default;
94
+ $list-style-position: outside !default;
95
+ $list-side-margin: 1.1rem !default;
96
+ $list-ordered-side-margin: 1.4rem !default;
97
+ $list-side-margin-no-bullet: 0 !default;
98
+ $list-nested-margin: rem-calc(20) !default;
99
+ $definition-list-header-weight: $font-weight-bold !default;
100
+ $definition-list-header-margin-bottom: .3rem !default;
101
+ $definition-list-margin-bottom: rem-calc(12) !default;
102
+
103
+ // We use these to style blockquotes
104
+ $blockquote-font-color: scale-color($header-font-color, $lightness: 35%) !default;
105
+ $blockquote-padding: rem-calc(9 20 0 19) !default;
106
+ $blockquote-border: 1px solid #ddd !default;
107
+ $blockquote-cite-font-size: rem-calc(13) !default;
108
+ $blockquote-cite-font-color: scale-color($header-font-color, $lightness: 23%) !default;
109
+ $blockquote-cite-link-color: $blockquote-cite-font-color !default;
110
+
111
+ // Acronym styles
112
+ $acronym-underline: 1px dotted #ddd !default;
113
+ ///
114
+
115
+ @mixin lead {
116
+ font-size: $paragraph-font-size + rem-calc(3.5);
117
+ line-height: 1.6;
118
+ }
119
+
120
+ @mixin subheader {
121
+ line-height: $subheader-line-height;
122
+ color: $subheader-font-color;
123
+ font-weight: $subheader-font-weight;
124
+ margin-top: $subheader-top-margin;
125
+ margin-bottom: $subheader-bottom-margin;
126
+ }
127
+
128
+ @include exports(typography) {
129
+ /* Typography resets */
130
+ div,
131
+ dl,
132
+ dt,
133
+ dd,
134
+ ul,
135
+ ol,
136
+ li,
137
+ h1,
138
+ h2,
139
+ h3,
140
+ h4,
141
+ h5,
142
+ h6,
143
+ pre,
144
+ form,
145
+ p,
146
+ blockquote,
147
+ th,
148
+ td {
149
+ margin:0;
150
+ padding:0;
151
+ }
152
+
153
+ /* Default Link Styles */
154
+ a {
155
+ color: $anchor-font-color;
156
+ text-decoration: $anchor-text-decoration;
157
+ line-height: inherit;
158
+
159
+ &[ui-sref] {
160
+ cursor: pointer;
161
+ }
162
+
163
+ &:hover,
164
+ &:focus {
165
+ color: $anchor-font-color-hover;
166
+ @if $anchor-text-decoration-hover != $anchor-text-decoration {
167
+ text-decoration: $anchor-text-decoration-hover;
168
+ }
169
+ }
170
+
171
+ img { border:none; }
172
+ }
173
+
174
+ /* Default paragraph styles */
175
+ p {
176
+ font-family: $paragraph-font-family;
177
+ font-weight: $paragraph-font-weight;
178
+ font-size: $paragraph-font-size;
179
+ line-height: $paragraph-line-height;
180
+ margin-bottom: $paragraph-margin-bottom;
181
+ text-rendering: $paragraph-text-rendering;
182
+
183
+ &.lead { @include lead; }
184
+
185
+ & aside {
186
+ font-size: $paragraph-aside-font-size;
187
+ line-height: $paragraph-aside-line-height;
188
+ font-style: $paragraph-aside-font-style;
189
+ }
190
+ }
191
+
192
+ /* Default header styles */
193
+ h1, h2, h3, h4, h5, h6 {
194
+ font-family: $header-font-family;
195
+ font-weight: $header-font-weight;
196
+ font-style: $header-font-style;
197
+ color: $header-font-color;
198
+ text-rendering: $header-text-rendering;
199
+ margin-top: $header-top-margin;
200
+ margin-bottom: $header-bottom-margin;
201
+ line-height: $header-line-height;
202
+
203
+ small {
204
+ font-size: $small-font-size;
205
+ color: $small-font-color;
206
+ line-height: 0;
207
+ }
208
+ }
209
+
210
+ h1 { font-size: $h1-font-size - $h1-font-reduction; }
211
+ h2 { font-size: $h2-font-size - $h2-font-reduction; }
212
+ h3 { font-size: $h3-font-size - $h3-font-reduction; }
213
+ h4 { font-size: $h4-font-size - $h4-font-reduction; }
214
+ h5 { font-size: $h5-font-size - $h5-font-reduction; }
215
+ h6 { font-size: $h6-font-size - $h6-font-reduction; }
216
+
217
+ .subheader { @include subheader; }
218
+
219
+ hr {
220
+ border: $hr-border-style $hr-border-color;
221
+ border-width: $hr-border-width 0 0;
222
+ clear: both;
223
+ margin: $hr-margin 0 ($hr-margin - rem-calc($hr-border-width));
224
+ height: 0;
225
+ }
226
+
227
+ /* Helpful Typography Defaults */
228
+ em,
229
+ i {
230
+ font-style: italic;
231
+ line-height: inherit;
232
+ }
233
+
234
+ strong,
235
+ b {
236
+ font-weight: $font-weight-bold;
237
+ line-height: inherit;
238
+ }
239
+
240
+ small {
241
+ font-size: $small-font-size;
242
+ color: $small-font-color;
243
+ line-height: inherit;
244
+ }
245
+
246
+ code {
247
+ font-family: $code-font-family;
248
+ font-weight: $code-font-weight;
249
+ color: $code-color;
250
+ background-color: $code-background-color;
251
+ border-width: $code-border-size;
252
+ border-style: $code-border-style;
253
+ border-color: $code-border-color;
254
+ padding: $code-padding;
255
+ }
256
+
257
+ /* Lists */
258
+ ul,
259
+ ol,
260
+ dl {
261
+ font-size: $list-font-size;
262
+ line-height: $list-line-height;
263
+ margin-bottom: $list-margin-bottom;
264
+ list-style-position: $list-style-position;
265
+ font-family: $list-font-family;
266
+ }
267
+
268
+ /* Lists */
269
+ ul, ol {
270
+ margin-left: $list-side-margin;
271
+ li {
272
+ ul,
273
+ ol {
274
+ margin-left: $list-nested-margin;
275
+ margin-bottom: 0;
276
+ }
277
+ }
278
+ }
279
+
280
+ /* Lists without bullets */
281
+ ul.no-bullet {
282
+ &, li ul, li ol {
283
+ list-style-type: none;
284
+ }
285
+ margin-left: $list-side-margin-no-bullet;
286
+ }
287
+
288
+ /* Definition Lists */
289
+ dl {
290
+ dt {
291
+ margin-bottom: $definition-list-header-margin-bottom;
292
+ font-weight: $definition-list-header-weight;
293
+ }
294
+ dd { margin-bottom: $definition-list-margin-bottom; }
295
+ }
296
+
297
+ /* Abbreviations */
298
+ abbr,
299
+ acronym {
300
+ text-transform: uppercase;
301
+ font-size: 90%;
302
+ color: $body-font-color;
303
+ border-bottom: $acronym-underline;
304
+ cursor: help;
305
+ }
306
+ abbr {
307
+ text-transform: none;
308
+ }
309
+
310
+ /* Blockquotes */
311
+ blockquote {
312
+ margin: 0 0 $paragraph-margin-bottom;
313
+ padding: $blockquote-padding;
314
+ border-left: $blockquote-border;
315
+
316
+ cite {
317
+ display: block;
318
+ font-size: $blockquote-cite-font-size;
319
+ color: $blockquote-cite-font-color;
320
+ &:before {
321
+ content: "\2014 \0020";
322
+ }
323
+
324
+ a,
325
+ a:visited {
326
+ color: $blockquote-cite-link-color;
327
+ }
328
+ }
329
+ }
330
+ blockquote,
331
+ blockquote p {
332
+ line-height: $paragraph-line-height;
333
+ color: $blockquote-font-color;
334
+ }
335
+
336
+ @include breakpoint(medium) {
337
+ h1,h2,h3,h4,h5,h6 { line-height: $header-line-height; }
338
+ h1 { font-size: $h1-font-size; }
339
+ h2 { font-size: $h2-font-size; }
340
+ h3 { font-size: $h3-font-size; }
341
+ h4 { font-size: $h4-font-size; }
342
+ h5 { font-size: $h5-font-size; }
343
+ h6 { font-size: $h6-font-size; }
344
+ }
345
+ }