raikar10 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (189) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +50 -0
  4. data/_includes/breadcrumb.html +17 -0
  5. data/_includes/footer.html +54 -0
  6. data/_includes/head.html +26 -0
  7. data/_includes/header.html +34 -0
  8. data/_includes/icon.html +3 -0
  9. data/_includes/nav_page.html +57 -0
  10. data/_includes/nav_side.html +68 -0
  11. data/_includes/toc_pure_liquid.html +68 -0
  12. data/_layouts/default.html +252 -0
  13. data/_layouts/page.html +5 -0
  14. data/_layouts/post.html +5 -0
  15. data/_sass/_accordion.scss +77 -0
  16. data/_sass/_article.scss +96 -0
  17. data/_sass/_base.scss +48 -0
  18. data/_sass/_bootstrap-icons.scss +7 -0
  19. data/_sass/_breadcrumb.scss +20 -0
  20. data/_sass/_btn.scss +9 -0
  21. data/_sass/_callout.scss +13 -0
  22. data/_sass/_fonts.scss +63 -0
  23. data/_sass/_footer.scss +38 -0
  24. data/_sass/_helpers.scss +2 -0
  25. data/_sass/_icons.scss +27 -0
  26. data/_sass/_link-main.scss +22 -0
  27. data/_sass/_list-links.scss +33 -0
  28. data/_sass/_list-tags.scss +9 -0
  29. data/_sass/_navbar.scss +81 -0
  30. data/_sass/_search.scss +51 -0
  31. data/_sass/_section-main.scss +54 -0
  32. data/_sass/_socials.scss +26 -0
  33. data/_sass/_switch.scss +56 -0
  34. data/_sass/_table.scss +100 -0
  35. data/_sass/_theme.scss +63 -0
  36. data/_sass/_tile.scss +34 -0
  37. data/_sass/_tiles.scss +9 -0
  38. data/_sass/_variables.scss +11 -0
  39. data/_sass/_widget.scss +15 -0
  40. data/_sass/_widgets.scss +12 -0
  41. data/_sass/bootstrap/scss/_accordion.scss +158 -0
  42. data/_sass/bootstrap/scss/_alert.scss +68 -0
  43. data/_sass/bootstrap/scss/_badge.scss +38 -0
  44. data/_sass/bootstrap/scss/_breadcrumb.scss +40 -0
  45. data/_sass/bootstrap/scss/_button-group.scss +142 -0
  46. data/_sass/bootstrap/scss/_buttons.scss +207 -0
  47. data/_sass/bootstrap/scss/_card.scss +239 -0
  48. data/_sass/bootstrap/scss/_carousel.scss +244 -0
  49. data/_sass/bootstrap/scss/_close.scss +63 -0
  50. data/_sass/bootstrap/scss/_containers.scss +41 -0
  51. data/_sass/bootstrap/scss/_dropdown.scss +250 -0
  52. data/_sass/bootstrap/scss/_forms.scss +9 -0
  53. data/_sass/bootstrap/scss/_functions.scss +302 -0
  54. data/_sass/bootstrap/scss/_grid.scss +39 -0
  55. data/_sass/bootstrap/scss/_helpers.scss +12 -0
  56. data/_sass/bootstrap/scss/_images.scss +42 -0
  57. data/_sass/bootstrap/scss/_list-group.scss +197 -0
  58. data/_sass/bootstrap/scss/_maps.scss +174 -0
  59. data/_sass/bootstrap/scss/_mixins.scss +42 -0
  60. data/_sass/bootstrap/scss/_modal.scss +237 -0
  61. data/_sass/bootstrap/scss/_nav.scss +209 -0
  62. data/_sass/bootstrap/scss/_navbar.scss +288 -0
  63. data/_sass/bootstrap/scss/_offcanvas.scss +146 -0
  64. data/_sass/bootstrap/scss/_pagination.scss +109 -0
  65. data/_sass/bootstrap/scss/_placeholders.scss +51 -0
  66. data/_sass/bootstrap/scss/_popover.scss +196 -0
  67. data/_sass/bootstrap/scss/_progress.scss +68 -0
  68. data/_sass/bootstrap/scss/_reboot.scss +610 -0
  69. data/_sass/bootstrap/scss/_root.scss +188 -0
  70. data/_sass/bootstrap/scss/_spinners.scss +85 -0
  71. data/_sass/bootstrap/scss/_tables.scss +164 -0
  72. data/_sass/bootstrap/scss/_toasts.scss +73 -0
  73. data/_sass/bootstrap/scss/_tooltip.scss +119 -0
  74. data/_sass/bootstrap/scss/_transitions.scss +27 -0
  75. data/_sass/bootstrap/scss/_type.scss +106 -0
  76. data/_sass/bootstrap/scss/_utilities.scss +806 -0
  77. data/_sass/bootstrap/scss/_variables-dark.scss +85 -0
  78. data/_sass/bootstrap/scss/_variables.scss +1743 -0
  79. data/_sass/bootstrap/scss/bootstrap-grid.scss +62 -0
  80. data/_sass/bootstrap/scss/bootstrap-reboot.scss +10 -0
  81. data/_sass/bootstrap/scss/bootstrap-utilities.scss +19 -0
  82. data/_sass/bootstrap/scss/bootstrap.scss +52 -0
  83. data/_sass/bootstrap/scss/forms/_floating-labels.scss +90 -0
  84. data/_sass/bootstrap/scss/forms/_form-check.scss +188 -0
  85. data/_sass/bootstrap/scss/forms/_form-control.scss +214 -0
  86. data/_sass/bootstrap/scss/forms/_form-range.scss +91 -0
  87. data/_sass/bootstrap/scss/forms/_form-select.scss +80 -0
  88. data/_sass/bootstrap/scss/forms/_form-text.scss +11 -0
  89. data/_sass/bootstrap/scss/forms/_input-group.scss +132 -0
  90. data/_sass/bootstrap/scss/forms/_labels.scss +36 -0
  91. data/_sass/bootstrap/scss/forms/_validation.scss +12 -0
  92. data/_sass/bootstrap/scss/helpers/_clearfix.scss +3 -0
  93. data/_sass/bootstrap/scss/helpers/_color-bg.scss +10 -0
  94. data/_sass/bootstrap/scss/helpers/_colored-links.scss +32 -0
  95. data/_sass/bootstrap/scss/helpers/_focus-ring.scss +5 -0
  96. data/_sass/bootstrap/scss/helpers/_icon-link.scss +25 -0
  97. data/_sass/bootstrap/scss/helpers/_position.scss +36 -0
  98. data/_sass/bootstrap/scss/helpers/_ratio.scss +26 -0
  99. data/_sass/bootstrap/scss/helpers/_stacks.scss +15 -0
  100. data/_sass/bootstrap/scss/helpers/_stretched-link.scss +15 -0
  101. data/_sass/bootstrap/scss/helpers/_text-truncation.scss +7 -0
  102. data/_sass/bootstrap/scss/helpers/_visually-hidden.scss +8 -0
  103. data/_sass/bootstrap/scss/helpers/_vr.scss +8 -0
  104. data/_sass/bootstrap/scss/mixins/_alert.scss +18 -0
  105. data/_sass/bootstrap/scss/mixins/_backdrop.scss +14 -0
  106. data/_sass/bootstrap/scss/mixins/_banner.scss +7 -0
  107. data/_sass/bootstrap/scss/mixins/_border-radius.scss +78 -0
  108. data/_sass/bootstrap/scss/mixins/_box-shadow.scss +18 -0
  109. data/_sass/bootstrap/scss/mixins/_breakpoints.scss +127 -0
  110. data/_sass/bootstrap/scss/mixins/_buttons.scss +70 -0
  111. data/_sass/bootstrap/scss/mixins/_caret.scss +69 -0
  112. data/_sass/bootstrap/scss/mixins/_clearfix.scss +9 -0
  113. data/_sass/bootstrap/scss/mixins/_color-mode.scss +21 -0
  114. data/_sass/bootstrap/scss/mixins/_color-scheme.scss +7 -0
  115. data/_sass/bootstrap/scss/mixins/_container.scss +11 -0
  116. data/_sass/bootstrap/scss/mixins/_deprecate.scss +10 -0
  117. data/_sass/bootstrap/scss/mixins/_forms.scss +153 -0
  118. data/_sass/bootstrap/scss/mixins/_gradients.scss +47 -0
  119. data/_sass/bootstrap/scss/mixins/_grid.scss +151 -0
  120. data/_sass/bootstrap/scss/mixins/_image.scss +16 -0
  121. data/_sass/bootstrap/scss/mixins/_list-group.scss +26 -0
  122. data/_sass/bootstrap/scss/mixins/_lists.scss +7 -0
  123. data/_sass/bootstrap/scss/mixins/_pagination.scss +10 -0
  124. data/_sass/bootstrap/scss/mixins/_reset-text.scss +17 -0
  125. data/_sass/bootstrap/scss/mixins/_resize.scss +6 -0
  126. data/_sass/bootstrap/scss/mixins/_table-variants.scss +24 -0
  127. data/_sass/bootstrap/scss/mixins/_text-truncate.scss +8 -0
  128. data/_sass/bootstrap/scss/mixins/_transition.scss +26 -0
  129. data/_sass/bootstrap/scss/mixins/_utilities.scss +97 -0
  130. data/_sass/bootstrap/scss/mixins/_visually-hidden.scss +33 -0
  131. data/_sass/bootstrap/scss/tests/jasmine.js +18 -0
  132. data/_sass/bootstrap/scss/tests/mixins/_color-modes.test.scss +69 -0
  133. data/_sass/bootstrap/scss/tests/mixins/_media-query-color-mode-full.test.scss +8 -0
  134. data/_sass/bootstrap/scss/tests/mixins/_utilities.test.scss +393 -0
  135. data/_sass/bootstrap/scss/tests/sass-true/register.js +15 -0
  136. data/_sass/bootstrap/scss/tests/sass-true/runner.js +19 -0
  137. data/_sass/bootstrap/scss/tests/utilities/_api.test.scss +75 -0
  138. data/_sass/bootstrap/scss/utilities/_api.scss +47 -0
  139. data/_sass/bootstrap/scss/vendor/_rfs.scss +354 -0
  140. data/_sass/raikar09.scss +1 -0
  141. data/assets/css/fonts/IBMPlexMono-Light.woff +0 -0
  142. data/assets/css/fonts/IBMPlexMono-Light.woff2 +0 -0
  143. data/assets/css/fonts/Jost-Bold.woff +0 -0
  144. data/assets/css/fonts/Jost-Bold.woff2 +0 -0
  145. data/assets/css/fonts/Jost-Italic.woff +0 -0
  146. data/assets/css/fonts/Jost-Italic.woff2 +0 -0
  147. data/assets/css/fonts/Jost-Regular.woff +0 -0
  148. data/assets/css/fonts/Jost-Regular.woff2 +0 -0
  149. data/assets/css/fonts/Jost-SemiBold.woff +0 -0
  150. data/assets/css/fonts/Jost-SemiBold.woff2 +0 -0
  151. data/assets/css/fonts/Ubuntu-Regular.woff +0 -0
  152. data/assets/css/fonts/Ubuntu-Regular.woff2 +0 -0
  153. data/assets/css/fonts/ZillaSlab-Regular.woff +0 -0
  154. data/assets/css/fonts/ZillaSlab-Regular.woff2 +0 -0
  155. data/assets/css/style.scss +31 -0
  156. data/assets/img/bootstrap-icons.svg +1 -0
  157. data/assets/img/ico-1.svg +17 -0
  158. data/assets/img/ico-2.svg +12 -0
  159. data/assets/img/ico-3.svg +18 -0
  160. data/assets/img/ico-4.svg +19 -0
  161. data/assets/img/ico-5.svg +13 -0
  162. data/assets/img/ico-6.svg +22 -0
  163. data/assets/img/ico-account.svg +17 -0
  164. data/assets/img/ico-clock.svg +23 -0
  165. data/assets/img/ico-facebook-square.svg +1 -0
  166. data/assets/img/ico-facebook.svg +11 -0
  167. data/assets/img/ico-github.svg +1 -0
  168. data/assets/img/ico-home.svg +11 -0
  169. data/assets/img/ico-instagram.svg +13 -0
  170. data/assets/img/ico-linkedin.svg +1 -0
  171. data/assets/img/ico-location.svg +12 -0
  172. data/assets/img/ico-mail.svg +12 -0
  173. data/assets/img/ico-moon.svg +11 -0
  174. data/assets/img/ico-pen.svg +13 -0
  175. data/assets/img/ico-phone.svg +12 -0
  176. data/assets/img/ico-search.svg +16 -0
  177. data/assets/img/ico-sun.svg +11 -0
  178. data/assets/img/ico-tag.svg +11 -0
  179. data/assets/img/ico-twitter.svg +1 -0
  180. data/assets/img/ico-whatsapp.svg +12 -0
  181. data/assets/img/ico-youtube.svg +1 -0
  182. data/assets/img/image-2.png +0 -0
  183. data/assets/img/image.jpg +0 -0
  184. data/assets/img/logo.png +0 -0
  185. data/assets/js/bootstrap.bundle.min.js +7 -0
  186. data/assets/js/functions.js +14 -0
  187. data/assets/js/jquery.min.js +2 -0
  188. data/assets/js/script.js +7 -0
  189. metadata +279 -0
@@ -0,0 +1,354 @@
1
+ // stylelint-disable property-disallowed-list, scss/dollar-variable-default
2
+
3
+ // SCSS RFS mixin
4
+ //
5
+ // Automated responsive values for font sizes, paddings, margins and much more
6
+ //
7
+ // Licensed under MIT (https://github.com/twbs/rfs/blob/main/LICENSE)
8
+
9
+ // Configuration
10
+
11
+ // Base value
12
+ $rfs-base-value: 1.25rem !default;
13
+ $rfs-unit: rem !default;
14
+
15
+ @if $rfs-unit != rem and $rfs-unit != px {
16
+ @error "`#{$rfs-unit}` is not a valid unit for $rfs-unit. Use `px` or `rem`.";
17
+ }
18
+
19
+ // Breakpoint at where values start decreasing if screen width is smaller
20
+ $rfs-breakpoint: 1200px !default;
21
+ $rfs-breakpoint-unit: px !default;
22
+
23
+ @if $rfs-breakpoint-unit != px and $rfs-breakpoint-unit != em and $rfs-breakpoint-unit != rem {
24
+ @error "`#{$rfs-breakpoint-unit}` is not a valid unit for $rfs-breakpoint-unit. Use `px`, `em` or `rem`.";
25
+ }
26
+
27
+ // Resize values based on screen height and width
28
+ $rfs-two-dimensional: false !default;
29
+
30
+ // Factor of decrease
31
+ $rfs-factor: 10 !default;
32
+
33
+ @if type-of($rfs-factor) != number or $rfs-factor <= 1 {
34
+ @error "`#{$rfs-factor}` is not a valid $rfs-factor, it must be greater than 1.";
35
+ }
36
+
37
+ // Mode. Possibilities: "min-media-query", "max-media-query"
38
+ $rfs-mode: min-media-query !default;
39
+
40
+ // Generate enable or disable classes. Possibilities: false, "enable" or "disable"
41
+ $rfs-class: false !default;
42
+
43
+ // 1 rem = $rfs-rem-value px
44
+ $rfs-rem-value: 16 !default;
45
+
46
+ // Safari iframe resize bug: https://github.com/twbs/rfs/issues/14
47
+ $rfs-safari-iframe-resize-bug-fix: false !default;
48
+
49
+ // Disable RFS by setting $enable-rfs to false
50
+ $enable-rfs: true !default;
51
+
52
+ // Cache $rfs-base-value unit
53
+ $rfs-base-value-unit: unit($rfs-base-value);
54
+
55
+ @function divide($dividend, $divisor, $precision: 10) {
56
+ $sign: if($dividend > 0 and $divisor > 0 or $dividend < 0 and $divisor < 0, 1, -1);
57
+ $dividend: abs($dividend);
58
+ $divisor: abs($divisor);
59
+ @if $dividend == 0 {
60
+ @return 0;
61
+ }
62
+ @if $divisor == 0 {
63
+ @error "Cannot divide by 0";
64
+ }
65
+ $remainder: $dividend;
66
+ $result: 0;
67
+ $factor: 10;
68
+ @while ($remainder > 0 and $precision >= 0) {
69
+ $quotient: 0;
70
+ @while ($remainder >= $divisor) {
71
+ $remainder: $remainder - $divisor;
72
+ $quotient: $quotient + 1;
73
+ }
74
+ $result: $result * 10 + $quotient;
75
+ $factor: $factor * .1;
76
+ $remainder: $remainder * 10;
77
+ $precision: $precision - 1;
78
+ @if ($precision < 0 and $remainder >= $divisor * 5) {
79
+ $result: $result + 1;
80
+ }
81
+ }
82
+ $result: $result * $factor * $sign;
83
+ $dividend-unit: unit($dividend);
84
+ $divisor-unit: unit($divisor);
85
+ $unit-map: (
86
+ "px": 1px,
87
+ "rem": 1rem,
88
+ "em": 1em,
89
+ "%": 1%
90
+ );
91
+ @if ($dividend-unit != $divisor-unit and map-has-key($unit-map, $dividend-unit)) {
92
+ $result: $result * map-get($unit-map, $dividend-unit);
93
+ }
94
+ @return $result;
95
+ }
96
+
97
+ // Remove px-unit from $rfs-base-value for calculations
98
+ @if $rfs-base-value-unit == px {
99
+ $rfs-base-value: divide($rfs-base-value, $rfs-base-value * 0 + 1);
100
+ }
101
+ @else if $rfs-base-value-unit == rem {
102
+ $rfs-base-value: divide($rfs-base-value, divide($rfs-base-value * 0 + 1, $rfs-rem-value));
103
+ }
104
+
105
+ // Cache $rfs-breakpoint unit to prevent multiple calls
106
+ $rfs-breakpoint-unit-cache: unit($rfs-breakpoint);
107
+
108
+ // Remove unit from $rfs-breakpoint for calculations
109
+ @if $rfs-breakpoint-unit-cache == px {
110
+ $rfs-breakpoint: divide($rfs-breakpoint, $rfs-breakpoint * 0 + 1);
111
+ }
112
+ @else if $rfs-breakpoint-unit-cache == rem or $rfs-breakpoint-unit-cache == "em" {
113
+ $rfs-breakpoint: divide($rfs-breakpoint, divide($rfs-breakpoint * 0 + 1, $rfs-rem-value));
114
+ }
115
+
116
+ // Calculate the media query value
117
+ $rfs-mq-value: if($rfs-breakpoint-unit == px, #{$rfs-breakpoint}px, #{divide($rfs-breakpoint, $rfs-rem-value)}#{$rfs-breakpoint-unit});
118
+ $rfs-mq-property-width: if($rfs-mode == max-media-query, max-width, min-width);
119
+ $rfs-mq-property-height: if($rfs-mode == max-media-query, max-height, min-height);
120
+
121
+ // Internal mixin used to determine which media query needs to be used
122
+ @mixin _rfs-media-query {
123
+ @if $rfs-two-dimensional {
124
+ @if $rfs-mode == max-media-query {
125
+ @media (#{$rfs-mq-property-width}: #{$rfs-mq-value}), (#{$rfs-mq-property-height}: #{$rfs-mq-value}) {
126
+ @content;
127
+ }
128
+ }
129
+ @else {
130
+ @media (#{$rfs-mq-property-width}: #{$rfs-mq-value}) and (#{$rfs-mq-property-height}: #{$rfs-mq-value}) {
131
+ @content;
132
+ }
133
+ }
134
+ }
135
+ @else {
136
+ @media (#{$rfs-mq-property-width}: #{$rfs-mq-value}) {
137
+ @content;
138
+ }
139
+ }
140
+ }
141
+
142
+ // Internal mixin that adds disable classes to the selector if needed.
143
+ @mixin _rfs-rule {
144
+ @if $rfs-class == disable and $rfs-mode == max-media-query {
145
+ // Adding an extra class increases specificity, which prevents the media query to override the property
146
+ &,
147
+ .disable-rfs &,
148
+ &.disable-rfs {
149
+ @content;
150
+ }
151
+ }
152
+ @else if $rfs-class == enable and $rfs-mode == min-media-query {
153
+ .enable-rfs &,
154
+ &.enable-rfs {
155
+ @content;
156
+ }
157
+ }
158
+ @else {
159
+ @content;
160
+ }
161
+ }
162
+
163
+ // Internal mixin that adds enable classes to the selector if needed.
164
+ @mixin _rfs-media-query-rule {
165
+
166
+ @if $rfs-class == enable {
167
+ @if $rfs-mode == min-media-query {
168
+ @content;
169
+ }
170
+
171
+ @include _rfs-media-query {
172
+ .enable-rfs &,
173
+ &.enable-rfs {
174
+ @content;
175
+ }
176
+ }
177
+ }
178
+ @else {
179
+ @if $rfs-class == disable and $rfs-mode == min-media-query {
180
+ .disable-rfs &,
181
+ &.disable-rfs {
182
+ @content;
183
+ }
184
+ }
185
+ @include _rfs-media-query {
186
+ @content;
187
+ }
188
+ }
189
+ }
190
+
191
+ // Helper function to get the formatted non-responsive value
192
+ @function rfs-value($values) {
193
+ // Convert to list
194
+ $values: if(type-of($values) != list, ($values,), $values);
195
+
196
+ $val: '';
197
+
198
+ // Loop over each value and calculate value
199
+ @each $value in $values {
200
+ @if $value == 0 {
201
+ $val: $val + ' 0';
202
+ }
203
+ @else {
204
+ // Cache $value unit
205
+ $unit: if(type-of($value) == "number", unit($value), false);
206
+
207
+ @if $unit == px {
208
+ // Convert to rem if needed
209
+ $val: $val + ' ' + if($rfs-unit == rem, #{divide($value, $value * 0 + $rfs-rem-value)}rem, $value);
210
+ }
211
+ @else if $unit == rem {
212
+ // Convert to px if needed
213
+ $val: $val + ' ' + if($rfs-unit == px, #{divide($value, $value * 0 + 1) * $rfs-rem-value}px, $value);
214
+ }
215
+ @else {
216
+ // If $value isn't a number (like inherit) or $value has a unit (not px or rem, like 1.5em) or $ is 0, just print the value
217
+ $val: $val + ' ' + $value;
218
+ }
219
+ }
220
+ }
221
+
222
+ // Remove first space
223
+ @return unquote(str-slice($val, 2));
224
+ }
225
+
226
+ // Helper function to get the responsive value calculated by RFS
227
+ @function rfs-fluid-value($values) {
228
+ // Convert to list
229
+ $values: if(type-of($values) != list, ($values,), $values);
230
+
231
+ $val: '';
232
+
233
+ // Loop over each value and calculate value
234
+ @each $value in $values {
235
+ @if $value == 0 {
236
+ $val: $val + ' 0';
237
+ }
238
+
239
+ @else {
240
+ // Cache $value unit
241
+ $unit: if(type-of($value) == "number", unit($value), false);
242
+
243
+ // If $value isn't a number (like inherit) or $value has a unit (not px or rem, like 1.5em) or $ is 0, just print the value
244
+ @if not $unit or $unit != px and $unit != rem {
245
+ $val: $val + ' ' + $value;
246
+ }
247
+
248
+ @else {
249
+ // Remove unit from $value for calculations
250
+ $value: divide($value, $value * 0 + if($unit == px, 1, divide(1, $rfs-rem-value)));
251
+
252
+ // Only add the media query if the value is greater than the minimum value
253
+ @if abs($value) <= $rfs-base-value or not $enable-rfs {
254
+ $val: $val + ' ' + if($rfs-unit == rem, #{divide($value, $rfs-rem-value)}rem, #{$value}px);
255
+ }
256
+ @else {
257
+ // Calculate the minimum value
258
+ $value-min: $rfs-base-value + divide(abs($value) - $rfs-base-value, $rfs-factor);
259
+
260
+ // Calculate difference between $value and the minimum value
261
+ $value-diff: abs($value) - $value-min;
262
+
263
+ // Base value formatting
264
+ $min-width: if($rfs-unit == rem, #{divide($value-min, $rfs-rem-value)}rem, #{$value-min}px);
265
+
266
+ // Use negative value if needed
267
+ $min-width: if($value < 0, -$min-width, $min-width);
268
+
269
+ // Use `vmin` if two-dimensional is enabled
270
+ $variable-unit: if($rfs-two-dimensional, vmin, vw);
271
+
272
+ // Calculate the variable width between 0 and $rfs-breakpoint
273
+ $variable-width: #{divide($value-diff * 100, $rfs-breakpoint)}#{$variable-unit};
274
+
275
+ // Return the calculated value
276
+ $val: $val + ' calc(' + $min-width + if($value < 0, ' - ', ' + ') + $variable-width + ')';
277
+ }
278
+ }
279
+ }
280
+ }
281
+
282
+ // Remove first space
283
+ @return unquote(str-slice($val, 2));
284
+ }
285
+
286
+ // RFS mixin
287
+ @mixin rfs($values, $property: font-size) {
288
+ @if $values != null {
289
+ $val: rfs-value($values);
290
+ $fluidVal: rfs-fluid-value($values);
291
+
292
+ // Do not print the media query if responsive & non-responsive values are the same
293
+ @if $val == $fluidVal {
294
+ #{$property}: $val;
295
+ }
296
+ @else {
297
+ @include _rfs-rule {
298
+ #{$property}: if($rfs-mode == max-media-query, $val, $fluidVal);
299
+
300
+ // Include safari iframe resize fix if needed
301
+ min-width: if($rfs-safari-iframe-resize-bug-fix, (0 * 1vw), null);
302
+ }
303
+
304
+ @include _rfs-media-query-rule {
305
+ #{$property}: if($rfs-mode == max-media-query, $fluidVal, $val);
306
+ }
307
+ }
308
+ }
309
+ }
310
+
311
+ // Shorthand helper mixins
312
+ @mixin font-size($value) {
313
+ @include rfs($value);
314
+ }
315
+
316
+ @mixin padding($value) {
317
+ @include rfs($value, padding);
318
+ }
319
+
320
+ @mixin padding-top($value) {
321
+ @include rfs($value, padding-top);
322
+ }
323
+
324
+ @mixin padding-right($value) {
325
+ @include rfs($value, padding-right);
326
+ }
327
+
328
+ @mixin padding-bottom($value) {
329
+ @include rfs($value, padding-bottom);
330
+ }
331
+
332
+ @mixin padding-left($value) {
333
+ @include rfs($value, padding-left);
334
+ }
335
+
336
+ @mixin margin($value) {
337
+ @include rfs($value, margin);
338
+ }
339
+
340
+ @mixin margin-top($value) {
341
+ @include rfs($value, margin-top);
342
+ }
343
+
344
+ @mixin margin-right($value) {
345
+ @include rfs($value, margin-right);
346
+ }
347
+
348
+ @mixin margin-bottom($value) {
349
+ @include rfs($value, margin-bottom);
350
+ }
351
+
352
+ @mixin margin-left($value) {
353
+ @include rfs($value, margin-left);
354
+ }
@@ -0,0 +1 @@
1
+ @import "{{ site.theme }}";
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,31 @@
1
+ ---
2
+ ---
3
+
4
+ @import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,500,700|Source+Code+Pro:300,400,500,700");
5
+ @import "variables";
6
+ @import "bootstrap/scss/bootstrap";
7
+ @import "bootstrap-icons";
8
+ @import "fonts";
9
+ @import "base";
10
+ @import "helpers";
11
+ @import "theme";
12
+ @import "section-main";
13
+ @import "navbar";
14
+ @import "breadcrumb";
15
+ @import "search";
16
+ @import "accordion";
17
+ @import "table";
18
+ @import "article";
19
+ @import "tile";
20
+ @import "tiles";
21
+ @import "list-tags";
22
+ @import "widgets";
23
+ @import "widget";
24
+ @import "list-links";
25
+ @import "switch";
26
+ @import "btn";
27
+ @import "callout";
28
+ @import "footer";
29
+ @import "socials";
30
+ @import "link-main";
31
+ @import "icons";