jekyll-bulma 1.0.1 → 1.0.3

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6cd1b1d1463a17ec339ae575db90a97a1fde671db4c988942f4a98d1c7cf8c35
4
- data.tar.gz: 8a4e29ee850e580a966e020fbb1b09d98062815a8bb56d4a9dd876d39297af60
3
+ metadata.gz: 5ec534ad7cbcc953c2d8878639941672f90e830db5a52ea865b91670392b0e9d
4
+ data.tar.gz: 76fab87c11d6cc338632ab099dadbb97acf2315b33e5aaaa72c291f2bb9c3d49
5
5
  SHA512:
6
- metadata.gz: 7045fcc616dbfd82098ce5d8f2b14e5e275f83bb0c6c70accbe9e8a9fb7e441f70739f935c61198e2911719c9f8744e949212d6636e48cbbebf63101a771f178
7
- data.tar.gz: 568f5fab8a2ea559d065ab8cbe90f6695260135a2fd61fd82462b628fd4776730c951222e7f3ab39d810f302eca7654a98fed3b5b3f19e1a8ee500d6e97488d3
6
+ metadata.gz: ece8f4a0875850b2e0fb1837ffbb0a458531375995c736ada7368662d8bfc1de83a8bdc9db4c3d0297be055628823402b2f327ede2259478d1c66309d4ee395c
7
+ data.tar.gz: b34200b6104dffae7be01d0fb9a89923b7fc6ae66b71e1aaa90dc7c339e9466adf1e7bc490fef13d4daf6a13741dc8e7ab46eeab2158d63e52b186fbd828e51c
@@ -1 +1,10 @@
1
- // No overrides so far
1
+ :root {
2
+ --bulma-body-family: Ubuntu, Helvetica, Arial, sans-serif;
3
+ }
4
+
5
+ .navbar {
6
+ --bulma-navbar-background-color: rgb(72, 207, 173);
7
+ --bulma-navbar-h: 166deg;
8
+ --bulma-navbar-s: 48%;
9
+ --bulma-navbar-l: 55%;
10
+ }
@@ -8,7 +8,7 @@
8
8
  @each $size in dv.$sizes {
9
9
  $i: list.index(dv.$sizes, $size);
10
10
 
11
- .#{iv.$class-prefix}#{iv.$helpers-prefix}size-#{$i}#{if($target == "", "", "-" + $target)} {
11
+ .#{iv.$class-prefix}#{iv.$helpers-prefix}size-#{$i}#{if(sass($target == ""): ""; else: "-" + $target)} {
12
12
  font-size: $size !important;
13
13
  }
14
14
  }
@@ -286,12 +286,12 @@
286
286
  "9": 9,
287
287
  );
288
288
 
289
- @for $i from if($minus, 2, 1) through string.length($value) {
289
+ @for $i from if(sass($minus): 2; else: 1) through string.length($value) {
290
290
  $character: string.slice($value, $i, $i);
291
291
 
292
292
  @if not(list.index(map.keys($numbers), $character) or $character == ".") {
293
293
  @return to-length(
294
- if($minus, -$result, $result),
294
+ if(sass($minus): -$result; else: $result),
295
295
  string.slice($value, $i)
296
296
  );
297
297
  }
@@ -306,5 +306,5 @@
306
306
  }
307
307
  }
308
308
 
309
- @return if($minus, -$result, $result);
309
+ @return if(sass($minus): -$result; else: $result);
310
310
  }
@@ -409,8 +409,8 @@
409
409
  }
410
410
 
411
411
  @mixin ltr-property($property, $spacing, $right: true) {
412
- $normal: if($right, "right", "left");
413
- $opposite: if($right, "left", "right");
412
+ $normal: if(sass($right): "right"; else: "left");
413
+ $opposite: if(sass($right): "left"; else: "right");
414
414
 
415
415
  @if iv.$rtl {
416
416
  #{$property}-#{$opposite}: $spacing;
@@ -420,8 +420,8 @@
420
420
  }
421
421
 
422
422
  @mixin ltr-position($spacing, $right: true) {
423
- $normal: if($right, "right", "left");
424
- $opposite: if($right, "left", "right");
423
+ $normal: if(sass($right): "right"; else: "left");
424
+ $opposite: if(sass($right): "left"; else: "right");
425
425
 
426
426
  @if iv.$rtl {
427
427
  #{$opposite}: $spacing;
data/assets/css/main.scss CHANGED
@@ -8,5 +8,3 @@
8
8
  @use "syntax-highlighting" with ($spacing-unit: 30px);
9
9
  @use "line-awesome/scss/line-awesome";
10
10
  @use "overrides";
11
-
12
- $font-family-base: Ubuntu, Helvetica, Arial, sans-serif;
@@ -0,0 +1,8 @@
1
+ @font-face {
2
+ font-family: 'Ubuntu';
3
+ font-style: normal;
4
+ font-weight: 400;
5
+ src: local('Ubuntu'), local('Ubuntu-Regular'),
6
+ url('/assets/fonts/ubuntu/ubuntu-v11-latin-ext_latin-regular.woff2') format('woff2'),
7
+ url('/assets/fonts/ubuntu/ubuntu-v11-latin-ext_latin-regular.woff') format('woff');
8
+ }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-bulma
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stefan Haslinger
@@ -157,6 +157,7 @@ files:
157
157
  - _sass/sass/utilities/initial-variables.scss
158
158
  - _sass/sass/utilities/mixins.scss
159
159
  - assets/css/main.scss
160
+ - assets/css/ubuntu.css
160
161
  - assets/fonts/line-awesome/la-brands-400.eot
161
162
  - assets/fonts/line-awesome/la-brands-400.svg
162
163
  - assets/fonts/line-awesome/la-brands-400.ttf
@@ -186,7 +187,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
186
187
  requirements:
187
188
  - - ">="
188
189
  - !ruby/object:Gem::Version
189
- version: '0'
190
+ version: '3.0'
190
191
  required_rubygems_version: !ruby/object:Gem::Requirement
191
192
  requirements:
192
193
  - - ">="