infotorg-api-jekyll-theme 0.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 (125) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +3 -0
  3. data/_config.yml +37 -0
  4. data/_includes/footer.html +11 -0
  5. data/_includes/head-app-css.html +2 -0
  6. data/_includes/head-fonts.html +2 -0
  7. data/_includes/head-google-analytics.html +13 -0
  8. data/_includes/navigation.html +58 -0
  9. data/_includes/services.html +75 -0
  10. data/_includes/title.html +4 -0
  11. data/_layouts/default.html +38 -0
  12. data/_layouts/services.html +5 -0
  13. data/_layouts/swagger-ui.html +67 -0
  14. data/_sass/_bootstrap.scss +51 -0
  15. data/_sass/_bootstrap_variables.scss +124 -0
  16. data/_sass/_typography.scss +15 -0
  17. data/_sass/_variables.scss +75 -0
  18. data/_sass/bootstrap/_accordion.scss +125 -0
  19. data/_sass/bootstrap/_alert.scss +57 -0
  20. data/_sass/bootstrap/_badge.scss +29 -0
  21. data/_sass/bootstrap/_breadcrumb.scss +28 -0
  22. data/_sass/bootstrap/_button-group.scss +139 -0
  23. data/_sass/bootstrap/_buttons.scss +109 -0
  24. data/_sass/bootstrap/_card.scss +215 -0
  25. data/_sass/bootstrap/_carousel.scss +223 -0
  26. data/_sass/bootstrap/_close.scss +40 -0
  27. data/_sass/bootstrap/_containers.scss +41 -0
  28. data/_sass/bootstrap/_dropdown.scss +235 -0
  29. data/_sass/bootstrap/_forms.scss +9 -0
  30. data/_sass/bootstrap/_functions.scss +205 -0
  31. data/_sass/bootstrap/_grid.scss +22 -0
  32. data/_sass/bootstrap/_helpers.scss +7 -0
  33. data/_sass/bootstrap/_images.scss +42 -0
  34. data/_sass/bootstrap/_list-group.scss +163 -0
  35. data/_sass/bootstrap/_mixins.scss +41 -0
  36. data/_sass/bootstrap/_modal.scss +235 -0
  37. data/_sass/bootstrap/_nav.scss +127 -0
  38. data/_sass/bootstrap/_navbar.scss +293 -0
  39. data/_sass/bootstrap/_pagination.scss +64 -0
  40. data/_sass/bootstrap/_popover.scss +173 -0
  41. data/_sass/bootstrap/_progress.scss +45 -0
  42. data/_sass/bootstrap/_reboot.scss +635 -0
  43. data/_sass/bootstrap/_root.scss +16 -0
  44. data/_sass/bootstrap/_spinners.scss +65 -0
  45. data/_sass/bootstrap/_tables.scss +150 -0
  46. data/_sass/bootstrap/_toasts.scss +50 -0
  47. data/_sass/bootstrap/_tooltip.scss +115 -0
  48. data/_sass/bootstrap/_transitions.scss +19 -0
  49. data/_sass/bootstrap/_type.scss +104 -0
  50. data/_sass/bootstrap/_utilities.scss +560 -0
  51. data/_sass/bootstrap/_variables.scss +1333 -0
  52. data/_sass/bootstrap/bootstrap-grid.scss +65 -0
  53. data/_sass/bootstrap/bootstrap-reboot.scss +15 -0
  54. data/_sass/bootstrap/bootstrap-utilities.scss +18 -0
  55. data/_sass/bootstrap/forms/_floating-labels.scss +61 -0
  56. data/_sass/bootstrap/forms/_form-check.scss +151 -0
  57. data/_sass/bootstrap/forms/_form-control.scss +223 -0
  58. data/_sass/bootstrap/forms/_form-range.scss +91 -0
  59. data/_sass/bootstrap/forms/_form-select.scss +68 -0
  60. data/_sass/bootstrap/forms/_form-text.scss +11 -0
  61. data/_sass/bootstrap/forms/_input-group.scss +121 -0
  62. data/_sass/bootstrap/forms/_labels.scss +36 -0
  63. data/_sass/bootstrap/forms/_validation.scss +12 -0
  64. data/_sass/bootstrap/helpers/_clearfix.scss +3 -0
  65. data/_sass/bootstrap/helpers/_colored-links.scss +12 -0
  66. data/_sass/bootstrap/helpers/_position.scss +30 -0
  67. data/_sass/bootstrap/helpers/_ratio.scss +26 -0
  68. data/_sass/bootstrap/helpers/_stretched-link.scss +15 -0
  69. data/_sass/bootstrap/helpers/_text-truncation.scss +7 -0
  70. data/_sass/bootstrap/helpers/_visually-hidden.scss +8 -0
  71. data/_sass/bootstrap/mixins/_alert.scss +9 -0
  72. data/_sass/bootstrap/mixins/_border-radius.scss +76 -0
  73. data/_sass/bootstrap/mixins/_box-shadow.scss +18 -0
  74. data/_sass/bootstrap/mixins/_breakpoints.scss +127 -0
  75. data/_sass/bootstrap/mixins/_buttons.scss +128 -0
  76. data/_sass/bootstrap/mixins/_caret.scss +62 -0
  77. data/_sass/bootstrap/mixins/_clearfix.scss +9 -0
  78. data/_sass/bootstrap/mixins/_container.scss +9 -0
  79. data/_sass/bootstrap/mixins/_deprecate.scss +10 -0
  80. data/_sass/bootstrap/mixins/_forms.scss +117 -0
  81. data/_sass/bootstrap/mixins/_gradients.scss +43 -0
  82. data/_sass/bootstrap/mixins/_grid.scss +120 -0
  83. data/_sass/bootstrap/mixins/_image.scss +16 -0
  84. data/_sass/bootstrap/mixins/_list-group.scss +22 -0
  85. data/_sass/bootstrap/mixins/_lists.scss +7 -0
  86. data/_sass/bootstrap/mixins/_pagination.scss +29 -0
  87. data/_sass/bootstrap/mixins/_reset-text.scss +17 -0
  88. data/_sass/bootstrap/mixins/_resize.scss +6 -0
  89. data/_sass/bootstrap/mixins/_table-variants.scss +21 -0
  90. data/_sass/bootstrap/mixins/_text-truncate.scss +8 -0
  91. data/_sass/bootstrap/mixins/_transition.scss +26 -0
  92. data/_sass/bootstrap/mixins/_utilities.scss +68 -0
  93. data/_sass/bootstrap/mixins/_visually-hidden.scss +28 -0
  94. data/_sass/bootstrap/utilities/_api.scss +47 -0
  95. data/_sass/bootstrap/vendor/_rfs.scss +312 -0
  96. data/assets/bootstrap.min.js +7 -0
  97. data/assets/bootstrap.min.js.map +1 -0
  98. data/assets/css/main.scss +214 -0
  99. data/assets/css/print.scss +8 -0
  100. data/assets/css/swagger-ui/3.x/theme-feeling-blue.css +1672 -0
  101. data/assets/css/swagger-ui/3.x/theme-flattop.css +1672 -0
  102. data/assets/css/swagger-ui/3.x/theme-material.css +1719 -0
  103. data/assets/css/swagger-ui/3.x/theme-monokai.css +1792 -0
  104. data/assets/css/swagger-ui/3.x/theme-muted.css +1673 -0
  105. data/assets/css/swagger-ui/3.x/theme-newspaper.css +1671 -0
  106. data/assets/css/swagger-ui/3.x/theme-outline.css +1652 -0
  107. data/assets/images/cube.svg +11 -0
  108. data/assets/images/icons/collapse.svg +14 -0
  109. data/assets/images/icons/info.svg +14 -0
  110. data/assets/images/icons/services/eiendom.svg +9 -0
  111. data/assets/images/icons/services/foretak.svg +10 -0
  112. data/assets/images/icons/services/kreditt.svg +11 -0
  113. data/assets/images/icons/services/likningopplysning.svg +11 -0
  114. data/assets/images/icons/services/person.svg +11 -0
  115. data/assets/images/icons/services/small-boats.svg +9 -0
  116. data/assets/images/icons/services/vehicle.svg +9 -0
  117. data/assets/images/infotorg-developer.png +0 -0
  118. data/assets/images/infotorg-developer.svg +23 -0
  119. data/assets/images/infotorg-developer@2x.png +0 -0
  120. data/assets/images/infotorg-developer@3x.png +0 -0
  121. data/assets/images/it-gears.svg +14 -0
  122. data/assets/images/logo.svg +12 -0
  123. data/assets/images/tieto-evry-logo.svg +29 -0
  124. data/assets/openapi/eiendom.json +6817 -0
  125. metadata +180 -0
@@ -0,0 +1,16 @@
1
+ :root {
2
+ // Custom variable values only support SassScript inside `#{}`.
3
+ @each $color, $value in $colors {
4
+ --#{$variable-prefix}#{$color}: #{$value};
5
+ }
6
+
7
+ @each $color, $value in $theme-colors {
8
+ --#{$variable-prefix}#{$color}: #{$value};
9
+ }
10
+
11
+ // Use `inspect` for lists so that quoted items keep the quotes.
12
+ // See https://github.com/sass/sass/issues/2383#issuecomment-336349172
13
+ --#{$variable-prefix}font-sans-serif: #{inspect($font-family-sans-serif)};
14
+ --#{$variable-prefix}font-monospace: #{inspect($font-family-monospace)};
15
+ --#{$variable-prefix}gradient: #{$gradient};
16
+ }
@@ -0,0 +1,65 @@
1
+ //
2
+ // Rotating border
3
+ //
4
+
5
+ @keyframes spinner-border {
6
+ to { transform: rotate(360deg) #{"/* rtl:ignore */"}; }
7
+ }
8
+
9
+ .spinner-border {
10
+ display: inline-block;
11
+ width: $spinner-width;
12
+ height: $spinner-height;
13
+ vertical-align: text-bottom;
14
+ border: $spinner-border-width solid currentColor;
15
+ border-right-color: transparent;
16
+ // stylelint-disable-next-line property-disallowed-list
17
+ border-radius: 50%;
18
+ animation: $spinner-animation-speed linear infinite spinner-border;
19
+ }
20
+
21
+ .spinner-border-sm {
22
+ width: $spinner-width-sm;
23
+ height: $spinner-height-sm;
24
+ border-width: $spinner-border-width-sm;
25
+ }
26
+
27
+ //
28
+ // Growing circle
29
+ //
30
+
31
+ @keyframes spinner-grow {
32
+ 0% {
33
+ transform: scale(0);
34
+ }
35
+ 50% {
36
+ opacity: 1;
37
+ transform: none;
38
+ }
39
+ }
40
+
41
+ .spinner-grow {
42
+ display: inline-block;
43
+ width: $spinner-width;
44
+ height: $spinner-height;
45
+ vertical-align: text-bottom;
46
+ background-color: currentColor;
47
+ // stylelint-disable-next-line property-disallowed-list
48
+ border-radius: 50%;
49
+ opacity: 0;
50
+ animation: $spinner-animation-speed linear infinite spinner-grow;
51
+ }
52
+
53
+ .spinner-grow-sm {
54
+ width: $spinner-width-sm;
55
+ height: $spinner-height-sm;
56
+ }
57
+
58
+ @if $enable-reduced-motion {
59
+ @media (prefers-reduced-motion: reduce) {
60
+ .spinner-border,
61
+ .spinner-grow {
62
+ animation-duration: $spinner-animation-speed * 2;
63
+ }
64
+ }
65
+ }
@@ -0,0 +1,150 @@
1
+ //
2
+ // Basic Bootstrap table
3
+ //
4
+
5
+ .table {
6
+ --#{$variable-prefix}table-bg: #{$table-bg};
7
+ --#{$variable-prefix}table-striped-color: #{$table-striped-color};
8
+ --#{$variable-prefix}table-striped-bg: #{$table-striped-bg};
9
+ --#{$variable-prefix}table-active-color: #{$table-active-color};
10
+ --#{$variable-prefix}table-active-bg: #{$table-active-bg};
11
+ --#{$variable-prefix}table-hover-color: #{$table-hover-color};
12
+ --#{$variable-prefix}table-hover-bg: #{$table-hover-bg};
13
+
14
+ width: 100%;
15
+ margin-bottom: $spacer;
16
+ color: $table-color;
17
+ vertical-align: $table-cell-vertical-align;
18
+ border-color: $table-border-color;
19
+
20
+ // Target th & td
21
+ // We need the child combinator to prevent styles leaking to nested tables which doesn't have a `.table` class.
22
+ // We use the universal selectors here to simplify the selector (else we would need 6 different selectors).
23
+ // Another advantage is that this generates less code and makes the selector less specific making it easier to override.
24
+ // stylelint-disable-next-line selector-max-universal
25
+ > :not(caption) > * > * {
26
+ padding: $table-cell-padding-y $table-cell-padding-x;
27
+ background-color: var(--#{$variable-prefix}table-bg);
28
+ background-image: linear-gradient(var(--#{$variable-prefix}table-accent-bg), var(--#{$variable-prefix}table-accent-bg));
29
+ border-bottom-width: $table-border-width;
30
+ }
31
+
32
+ > tbody {
33
+ vertical-align: inherit;
34
+ }
35
+
36
+ > thead {
37
+ vertical-align: bottom;
38
+ }
39
+
40
+ // Highlight border color between thead, tbody and tfoot.
41
+ > :not(:last-child) > :last-child > * {
42
+ border-bottom-color: $table-group-separator-color;
43
+ }
44
+ }
45
+
46
+
47
+ //
48
+ // Change placement of captions with a class
49
+ //
50
+
51
+ .caption-top {
52
+ caption-side: top;
53
+ }
54
+
55
+
56
+ //
57
+ // Condensed table w/ half padding
58
+ //
59
+
60
+ .table-sm {
61
+ // stylelint-disable-next-line selector-max-universal
62
+ > :not(caption) > * > * {
63
+ padding: $table-cell-padding-y-sm $table-cell-padding-x-sm;
64
+ }
65
+ }
66
+
67
+
68
+ // Border versions
69
+ //
70
+ // Add or remove borders all around the table and between all the columns.
71
+ //
72
+ // When borders are added on all sides of the cells, the corners can render odd when
73
+ // these borders do not have the same color or if they are semi-transparent.
74
+ // Therefor we add top and border bottoms to the `tr`s and left and right borders
75
+ // to the `td`s or `th`s
76
+
77
+ .table-bordered {
78
+ > :not(caption) > * {
79
+ border-width: $table-border-width 0;
80
+
81
+ // stylelint-disable-next-line selector-max-universal
82
+ > * {
83
+ border-width: 0 $table-border-width;
84
+ }
85
+ }
86
+ }
87
+
88
+ .table-borderless {
89
+ // stylelint-disable-next-line selector-max-universal
90
+ > :not(caption) > * > * {
91
+ border-bottom-width: 0;
92
+ }
93
+ }
94
+
95
+ // Zebra-striping
96
+ //
97
+ // Default zebra-stripe styles (alternating gray and transparent backgrounds)
98
+
99
+ .table-striped {
100
+ > tbody > tr:nth-of-type(#{$table-striped-order}) {
101
+ --#{$variable-prefix}table-accent-bg: var(--#{$variable-prefix}table-striped-bg);
102
+ color: var(--#{$variable-prefix}table-striped-color);
103
+ }
104
+ }
105
+
106
+ // Active table
107
+ //
108
+ // The `.table-active` class can be added to highlight rows or cells
109
+
110
+ .table-active {
111
+ --#{$variable-prefix}table-accent-bg: var(--#{$variable-prefix}table-active-bg);
112
+ color: var(--#{$variable-prefix}table-active-color);
113
+ }
114
+
115
+ // Hover effect
116
+ //
117
+ // Placed here since it has to come after the potential zebra striping
118
+
119
+ .table-hover {
120
+ > tbody > tr:hover {
121
+ --#{$variable-prefix}table-accent-bg: var(--#{$variable-prefix}table-hover-bg);
122
+ color: var(--#{$variable-prefix}table-hover-color);
123
+ }
124
+ }
125
+
126
+
127
+ // Table variants
128
+ //
129
+ // Table variants set the table cell backgrounds, border colors
130
+ // and the colors of the striped, hovered & active tables
131
+
132
+ @each $color, $value in $table-variants {
133
+ @include table-variant($color, $value);
134
+ }
135
+
136
+ // Responsive tables
137
+ //
138
+ // Generate series of `.table-responsive-*` classes for configuring the screen
139
+ // size of where your table will overflow.
140
+
141
+ @each $breakpoint in map-keys($grid-breakpoints) {
142
+ $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
143
+
144
+ @include media-breakpoint-down($breakpoint) {
145
+ .table-responsive#{$infix} {
146
+ overflow-x: auto;
147
+ -webkit-overflow-scrolling: touch;
148
+ }
149
+ }
150
+ }
@@ -0,0 +1,50 @@
1
+ .toast {
2
+ width: $toast-max-width;
3
+ max-width: 100%;
4
+ @include font-size($toast-font-size);
5
+ color: $toast-color;
6
+ pointer-events: auto;
7
+ background-color: $toast-background-color;
8
+ background-clip: padding-box;
9
+ border: $toast-border-width solid $toast-border-color;
10
+ box-shadow: $toast-box-shadow;
11
+ @include border-radius($toast-border-radius);
12
+
13
+ &:not(.showing):not(.show) {
14
+ opacity: 0;
15
+ }
16
+
17
+ &.hide {
18
+ display: none;
19
+ }
20
+ }
21
+
22
+ .toast-container {
23
+ width: max-content;
24
+ max-width: 100%;
25
+ pointer-events: none;
26
+
27
+ > :not(:last-child) {
28
+ margin-bottom: $toast-spacing;
29
+ }
30
+ }
31
+
32
+ .toast-header {
33
+ display: flex;
34
+ align-items: center;
35
+ padding: $toast-padding-y $toast-padding-x;
36
+ color: $toast-header-color;
37
+ background-color: $toast-header-background-color;
38
+ background-clip: padding-box;
39
+ border-bottom: $toast-border-width solid $toast-header-border-color;
40
+ @include border-top-radius(subtract($toast-border-radius, $toast-border-width));
41
+
42
+ .btn-close {
43
+ margin-right: $toast-padding-x / -2;
44
+ margin-left: $toast-padding-x;
45
+ }
46
+ }
47
+
48
+ .toast-body {
49
+ padding: $toast-padding-x; // apply to both vertical and horizontal
50
+ }
@@ -0,0 +1,115 @@
1
+ // Base class
2
+ .tooltip {
3
+ position: absolute;
4
+ z-index: $zindex-tooltip;
5
+ display: block;
6
+ margin: $tooltip-margin;
7
+ // Our parent element can be arbitrary since tooltips are by default inserted as a sibling of their target element.
8
+ // So reset our font and text properties to avoid inheriting weird values.
9
+ @include reset-text();
10
+ @include font-size($tooltip-font-size);
11
+ // Allow breaking very long words so they don't overflow the tooltip's bounds
12
+ word-wrap: break-word;
13
+ opacity: 0;
14
+
15
+ &.show { opacity: $tooltip-opacity; }
16
+
17
+ .tooltip-arrow {
18
+ position: absolute;
19
+ display: block;
20
+ width: $tooltip-arrow-width;
21
+ height: $tooltip-arrow-height;
22
+
23
+ &::before {
24
+ position: absolute;
25
+ content: "";
26
+ border-color: transparent;
27
+ border-style: solid;
28
+ }
29
+ }
30
+ }
31
+
32
+ .bs-tooltip-top {
33
+ padding: $tooltip-arrow-height 0;
34
+
35
+ .tooltip-arrow {
36
+ bottom: 0;
37
+
38
+ &::before {
39
+ top: -1px;
40
+ border-width: $tooltip-arrow-height ($tooltip-arrow-width / 2) 0;
41
+ border-top-color: $tooltip-arrow-color;
42
+ }
43
+ }
44
+ }
45
+
46
+ .bs-tooltip-end {
47
+ padding: 0 $tooltip-arrow-height;
48
+
49
+ .tooltip-arrow {
50
+ left: 0;
51
+ width: $tooltip-arrow-height;
52
+ height: $tooltip-arrow-width;
53
+
54
+ &::before {
55
+ right: -1px;
56
+ border-width: ($tooltip-arrow-width / 2) $tooltip-arrow-height ($tooltip-arrow-width / 2) 0;
57
+ border-right-color: $tooltip-arrow-color;
58
+ }
59
+ }
60
+ }
61
+
62
+ .bs-tooltip-bottom {
63
+ padding: $tooltip-arrow-height 0;
64
+
65
+ .tooltip-arrow {
66
+ top: 0;
67
+
68
+ &::before {
69
+ bottom: -1px;
70
+ border-width: 0 ($tooltip-arrow-width / 2) $tooltip-arrow-height;
71
+ border-bottom-color: $tooltip-arrow-color;
72
+ }
73
+ }
74
+ }
75
+
76
+ .bs-tooltip-start {
77
+ padding: 0 $tooltip-arrow-height;
78
+
79
+ .tooltip-arrow {
80
+ right: 0;
81
+ width: $tooltip-arrow-height;
82
+ height: $tooltip-arrow-width;
83
+
84
+ &::before {
85
+ left: -1px;
86
+ border-width: ($tooltip-arrow-width / 2) 0 ($tooltip-arrow-width / 2) $tooltip-arrow-height;
87
+ border-left-color: $tooltip-arrow-color;
88
+ }
89
+ }
90
+ }
91
+
92
+ .bs-tooltip-auto {
93
+ &[data-popper-placement^="top"] {
94
+ @extend .bs-tooltip-top;
95
+ }
96
+ &[data-popper-placement^="right"] {
97
+ @extend .bs-tooltip-end;
98
+ }
99
+ &[data-popper-placement^="bottom"] {
100
+ @extend .bs-tooltip-bottom;
101
+ }
102
+ &[data-popper-placement^="left"] {
103
+ @extend .bs-tooltip-start;
104
+ }
105
+ }
106
+
107
+ // Wrapper for the tooltip content
108
+ .tooltip-inner {
109
+ max-width: $tooltip-max-width;
110
+ padding: $tooltip-padding-y $tooltip-padding-x;
111
+ color: $tooltip-color;
112
+ text-align: center;
113
+ background-color: $tooltip-bg;
114
+ @include border-radius($tooltip-border-radius);
115
+ }
@@ -0,0 +1,19 @@
1
+ .fade {
2
+ @include transition($transition-fade);
3
+
4
+ &:not(.show) {
5
+ opacity: 0;
6
+ }
7
+ }
8
+
9
+ .collapse {
10
+ &:not(.show) {
11
+ display: none;
12
+ }
13
+ }
14
+
15
+ .collapsing {
16
+ height: 0;
17
+ overflow: hidden;
18
+ @include transition($transition-collapse);
19
+ }
@@ -0,0 +1,104 @@
1
+ //
2
+ // Headings
3
+ //
4
+ .h1 {
5
+ @extend h1;
6
+ }
7
+
8
+ .h2 {
9
+ @extend h2;
10
+ }
11
+
12
+ .h3 {
13
+ @extend h3;
14
+ }
15
+
16
+ .h4 {
17
+ @extend h4;
18
+ }
19
+
20
+ .h5 {
21
+ @extend h5;
22
+ }
23
+
24
+ .h6 {
25
+ @extend h6;
26
+ }
27
+
28
+
29
+ .lead {
30
+ @include font-size($lead-font-size);
31
+ font-weight: $lead-font-weight;
32
+ }
33
+
34
+ // Type display classes
35
+ @each $display, $font-size in $display-font-sizes {
36
+ .display-#{$display} {
37
+ @include font-size($font-size);
38
+ font-weight: $display-font-weight;
39
+ line-height: $display-line-height;
40
+ }
41
+ }
42
+
43
+ //
44
+ // Emphasis
45
+ //
46
+ .small {
47
+ @extend small;
48
+ }
49
+
50
+ .mark {
51
+ @extend mark;
52
+ }
53
+
54
+ //
55
+ // Lists
56
+ //
57
+
58
+ .list-unstyled {
59
+ @include list-unstyled();
60
+ }
61
+
62
+ // Inline turns list items into inline-block
63
+ .list-inline {
64
+ @include list-unstyled();
65
+ }
66
+ .list-inline-item {
67
+ display: inline-block;
68
+
69
+ &:not(:last-child) {
70
+ margin-right: $list-inline-padding;
71
+ }
72
+ }
73
+
74
+
75
+ //
76
+ // Misc
77
+ //
78
+
79
+ // Builds on `abbr`
80
+ .initialism {
81
+ @include font-size($initialism-font-size);
82
+ text-transform: uppercase;
83
+ }
84
+
85
+ // Blockquotes
86
+ .blockquote {
87
+ margin-bottom: $blockquote-margin-y;
88
+ @include font-size($blockquote-font-size);
89
+
90
+ > :last-child {
91
+ margin-bottom: 0;
92
+ }
93
+ }
94
+
95
+ .blockquote-footer {
96
+ margin-top: -$blockquote-margin-y;
97
+ margin-bottom: $blockquote-margin-y;
98
+ @include font-size($blockquote-footer-font-size);
99
+ color: $blockquote-footer-color;
100
+
101
+ &::before {
102
+ content: "\2014\00A0"; // em dash, nbsp
103
+ }
104
+ }