bulma-clean-theme 0.13 → 0.13.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (33) hide show
  1. checksums.yaml +4 -4
  2. data/_includes/head.html +3 -0
  3. data/_includes/image-modal.html +5 -5
  4. data/_layouts/default.html +1 -0
  5. data/_sass/_layout.scss +4 -1
  6. data/node_modules/.package-lock.json +18 -18
  7. data/node_modules/bulma/LICENSE +1 -1
  8. data/node_modules/bulma/README.md +59 -54
  9. data/node_modules/bulma/bulma.sass +1 -1
  10. data/node_modules/bulma/css/bulma-rtl.css +55 -15
  11. data/node_modules/bulma/css/bulma-rtl.css.map +1 -1
  12. data/node_modules/bulma/css/bulma-rtl.min.css +1 -1
  13. data/node_modules/bulma/css/bulma.css +55 -15
  14. data/node_modules/bulma/css/bulma.css.map +1 -1
  15. data/node_modules/bulma/css/bulma.min.css +1 -1
  16. data/node_modules/bulma/package.json +5 -5
  17. data/node_modules/bulma/sass/components/pagination.sass +2 -1
  18. data/node_modules/bulma/sass/elements/button.sass +13 -1
  19. data/node_modules/bulma/sass/elements/content.sass +5 -2
  20. data/node_modules/bulma/sass/elements/table.sass +2 -1
  21. data/node_modules/bulma/sass/form/select.sass +2 -1
  22. data/node_modules/bulma/sass/utilities/functions.sass +2 -3
  23. data/node_modules/bulma/sass/utilities/initial-variables.sass +1 -0
  24. data/node_modules/bulma/sass/utilities/mixins.sass +24 -1
  25. data/node_modules/bulma-block-list/docs/Gemfile +1 -1
  26. data/node_modules/bulma-block-list/docs/_sass/_block-list.scss +33 -8
  27. data/node_modules/bulma-block-list/docs/_sass/_main.scss +4 -4
  28. data/node_modules/bulma-block-list/package.json +20 -20
  29. data/node_modules/bulma-block-list/src/block-list.scss +33 -8
  30. data/package-lock.json +42 -41
  31. data/package.json +14 -14
  32. metadata +2 -3
  33. data/node_modules/bulma/CHANGELOG.md +0 -1558
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bulma",
3
- "version": "0.9.3",
3
+ "version": "0.9.4",
4
4
  "homepage": "https://bulma.io",
5
5
  "author": {
6
6
  "name": "Jeremy Thomas",
@@ -27,10 +27,10 @@
27
27
  "url": "https://github.com/jgthms/bulma/issues"
28
28
  },
29
29
  "devDependencies": {
30
- "autoprefixer": "^9.8.6",
31
- "clean-css-cli": "^4.3.0",
32
- "node-sass": "^4.14.1",
33
- "postcss-cli": "^7.1.2",
30
+ "autoprefixer": "^10.4.7",
31
+ "clean-css-cli": "^5.6.0",
32
+ "node-sass": "^7.0.1",
33
+ "postcss-cli": "^9.1.0",
34
34
  "rimraf": "^3.0.2"
35
35
  },
36
36
  "scripts": {
@@ -88,7 +88,8 @@ $pagination-shadow-inset: inset 0 1px 2px rgba($scheme-invert, 0.2) !default
88
88
  border-color: $pagination-focus-border-color
89
89
  &:active
90
90
  box-shadow: $pagination-shadow-inset
91
- &[disabled]
91
+ &[disabled],
92
+ &.is-disabled
92
93
  background-color: $pagination-disabled-background-color
93
94
  border-color: $pagination-disabled-border-color
94
95
  box-shadow: none
@@ -44,6 +44,7 @@ $button-static-background-color: $scheme-main-ter !default
44
44
  $button-static-border-color: $border !default
45
45
 
46
46
  $button-colors: $colors !default
47
+ $button-responsive-sizes: ("mobile": ("small": ($size-small * 0.75), "normal": ($size-small * 0.875), "medium": $size-small, "large": $size-normal), "tablet-only": ("small": ($size-small * 0.875), "normal": ($size-small), "medium": $size-normal, "large": $size-medium)) !default
47
48
 
48
49
  // The button sizes use mixins so they can be used at different breakpoints
49
50
  =button-small
@@ -163,7 +164,7 @@ $button-colors: $colors !default
163
164
  &[disabled],
164
165
  fieldset[disabled] &
165
166
  background-color: $color
166
- border-color: transparent
167
+ border-color: $color
167
168
  box-shadow: none
168
169
  &.is-inverted
169
170
  background-color: $color-invert
@@ -343,3 +344,14 @@ $button-colors: $colors !default
343
344
  .button:not(.is-fullwidth)
344
345
  margin-left: 0.25rem
345
346
  margin-right: 0.25rem
347
+
348
+ @each $bp-name, $bp-sizes in $button-responsive-sizes
349
+ +breakpoint($bp-name)
350
+ @each $size, $value in $bp-sizes
351
+ @if $size != "normal"
352
+ .button.is-responsive.is-#{$size}
353
+ font-size: $value
354
+ @else
355
+ .button.is-responsive,
356
+ .button.is-responsive.is-normal
357
+ font-size: $value
@@ -4,6 +4,8 @@ $content-heading-color: $text-strong !default
4
4
  $content-heading-weight: $weight-semibold !default
5
5
  $content-heading-line-height: 1.125 !default
6
6
 
7
+ $content-block-margin-bottom: 1em !default
8
+
7
9
  $content-blockquote-background-color: $background !default
8
10
  $content-blockquote-border-left: 5px solid $border !default
9
11
  $content-blockquote-padding: 1.25em 1.5em !default
@@ -16,6 +18,7 @@ $content-table-cell-padding: 0.5em 0.75em !default
16
18
  $content-table-cell-heading-color: $text-strong !default
17
19
  $content-table-head-cell-border-width: 0 0 2px !default
18
20
  $content-table-head-cell-color: $text-strong !default
21
+ $content-table-body-last-row-cell-border-bottom-width: 0 !default
19
22
  $content-table-foot-cell-border-width: 2px 0 0 !default
20
23
  $content-table-foot-cell-color: $text-strong !default
21
24
 
@@ -33,7 +36,7 @@ $content-table-foot-cell-color: $text-strong !default
33
36
  pre,
34
37
  table
35
38
  &:not(:last-child)
36
- margin-bottom: 1em
39
+ margin-bottom: $content-block-margin-bottom
37
40
  h1,
38
41
  h2,
39
42
  h3,
@@ -144,7 +147,7 @@ $content-table-foot-cell-color: $text-strong !default
144
147
  &:last-child
145
148
  td,
146
149
  th
147
- border-bottom-width: 0
150
+ border-bottom-width: $content-table-body-last-row-cell-border-bottom-width
148
151
  .tabs
149
152
  li + li
150
153
  margin-top: 0
@@ -7,6 +7,7 @@ $table-cell-border: 1px solid $border !default
7
7
  $table-cell-border-width: 0 0 1px !default
8
8
  $table-cell-padding: 0.5em 0.75em !default
9
9
  $table-cell-heading-color: $text-strong !default
10
+ $table-cell-text-align: left !default
10
11
 
11
12
  $table-head-cell-border-width: 0 0 2px !default
12
13
  $table-head-cell-color: $text-strong !default
@@ -60,7 +61,7 @@ $table-colors: $colors !default
60
61
  th
61
62
  color: $table-cell-heading-color
62
63
  &:not([align])
63
- text-align: inherit
64
+ text-align: $table-cell-text-align
64
65
  tr
65
66
  &.is-selected
66
67
  background-color: $table-row-active-background-color
@@ -66,7 +66,8 @@ $select-colors: $form-colors !default
66
66
  // Modifiers
67
67
  &.is-disabled
68
68
  &::after
69
- border-color: $input-disabled-color
69
+ border-color: $input-disabled-color !important
70
+ opacity: 0.5
70
71
  &.is-fullwidth
71
72
  width: 100%
72
73
  select
@@ -82,7 +82,7 @@
82
82
  @else
83
83
  @return #fff
84
84
 
85
- @function findLightColor($color)
85
+ @function findLightColor($color, $l: 96%)
86
86
  @if type-of($color) == 'color'
87
87
  $l: 96%
88
88
  @if lightness($color) > 96%
@@ -90,9 +90,8 @@
90
90
  @return change-color($color, $lightness: $l)
91
91
  @return $background
92
92
 
93
- @function findDarkColor($color)
93
+ @function findDarkColor($color, $base-l: 29%)
94
94
  @if type-of($color) == 'color'
95
- $base-l: 29%
96
95
  $luminance: colorLuminance($color)
97
96
  $luminance-delta: (0.53 - $luminance)
98
97
  $target-l: round($base-l + ($luminance-delta * 53))
@@ -62,6 +62,7 @@ $widescreen-enabled: true !default
62
62
  // 1344px container + 4rem
63
63
  $fullhd: 1344px + (2 * $gap) !default
64
64
  $fullhd-enabled: true !default
65
+ $breakpoints: ("mobile": ("until": $tablet), "tablet": ("from": $tablet), "tablet-only": ("from": $tablet, "until": $desktop), "touch": ("from": $desktop), "desktop": ("from": $desktop), "desktop-only": ("from": $desktop, "until": $widescreen), "until-widescreen": ("until": $widescreen), "widescreen": ("from": $widescreen), "widescreen-only": ("from": $widescreen, "until": $fullhd), "until-fullhd": ("until": $fullhd), "fullhd": ("from": $fullhd)) !default
65
66
 
66
67
  // Miscellaneous
67
68
 
@@ -25,6 +25,11 @@
25
25
  width: $dimensions
26
26
 
27
27
  =hamburger($dimensions)
28
+ -moz-appearance: none
29
+ -webkit-appearance: none
30
+ appearance: none
31
+ background: none
32
+ border: none
28
33
  cursor: pointer
29
34
  display: block
30
35
  height: $dimensions
@@ -90,6 +95,10 @@
90
95
  @media screen and (max-width: $device - 1px)
91
96
  @content
92
97
 
98
+ =between($from, $until)
99
+ @media screen and (min-width: $from) and (max-width: $until - 1px)
100
+ @content
101
+
93
102
  =mobile
94
103
  @media screen and (max-width: $tablet - 1px)
95
104
  @content
@@ -140,6 +149,21 @@
140
149
  @media screen and (min-width: $fullhd)
141
150
  @content
142
151
 
152
+ =breakpoint($name)
153
+ $breakpoint: map-get($breakpoints, $name)
154
+ @if $breakpoint
155
+ $from: map-get($breakpoint, "from")
156
+ $until: map-get($breakpoint, "until")
157
+ @if $from and $until
158
+ +between($from, $until)
159
+ @content
160
+ @else if $from
161
+ +from($from)
162
+ @content
163
+ @else if $until
164
+ +until($until)
165
+ @content
166
+
143
167
  =ltr
144
168
  @if not $rtl
145
169
  @content
@@ -277,4 +301,3 @@
277
301
  position: absolute
278
302
  right: $offset
279
303
  top: $offset
280
-
@@ -1,3 +1,3 @@
1
1
  source 'https://rubygems.org'
2
- gem "bulma-clean-theme", '0.12'
2
+ gem "bulma-clean-theme", '0.13.1'
3
3
  gem 'github-pages', group: :jekyll_plugins
@@ -1,20 +1,47 @@
1
1
  @charset "utf-8";
2
2
 
3
+ // Custom divide function by @mdo from https://github.com/twbs/bootstrap/pull/34245
4
+ // Replaces old slash division deprecated in Dart Sass
5
+ @function customDivide($dividend, $divisor, $precision: 10) {
6
+ $sign: if($dividend > 0 and $divisor > 0, 1, -1);
7
+ $dividend: abs($dividend);
8
+ $divisor: abs($divisor);
9
+ $quotient: 0;
10
+ $remainder: $dividend;
11
+ @if $dividend == 0 {
12
+ @return 0;
13
+ }
14
+ @if $divisor == 0 {
15
+ @error "Cannot divide by 0";
16
+ }
17
+ @if $divisor == 1 {
18
+ @return $dividend;
19
+ }
20
+ @while $remainder >= $divisor {
21
+ $quotient: $quotient + 1;
22
+ $remainder: $remainder - $divisor;
23
+ }
24
+ @if $remainder > 0 and $precision > 0 {
25
+ $remainder: divide($remainder * 10, $divisor, $precision - 1) * 0.1;
26
+ }
27
+ @return ($quotient + $remainder) * $sign;
28
+ }
29
+
3
30
  $block-list-separator: 0.25rem !default;
4
31
  $block-list-highlight-width: 5px !default;
5
32
 
6
33
  .content {
7
34
  ul.block-list {
8
- list-style: none;
9
- margin-left: 0;
35
+ list-style: none;
36
+ margin-left: 0;
10
37
  }
11
- }
38
+ }
12
39
 
13
40
  .block-list {
14
41
  list-style: none;
15
42
 
16
43
  li {
17
- padding: ($gap / 2);
44
+ padding: customDivide($gap, 2);
18
45
  background: $light;
19
46
  margin-bottom: $block-list-separator;
20
47
  }
@@ -24,7 +51,6 @@ $block-list-highlight-width: 5px !default;
24
51
  text-align: left;
25
52
  }
26
53
 
27
-
28
54
  li.is-centered,
29
55
  &.is-centered > li {
30
56
  text-align: center;
@@ -38,7 +64,7 @@ $block-list-highlight-width: 5px !default;
38
64
  li.is-small,
39
65
  &.is-small > li {
40
66
  font-size: $small-font-size;
41
- padding: ($gap / 3);
67
+ padding: customDivide($gap, 3);
42
68
  }
43
69
 
44
70
  li.is-normal,
@@ -90,13 +116,12 @@ $block-list-highlight-width: 5px !default;
90
116
  &.is-right {
91
117
  .icon {
92
118
  margin-right: 0;
93
- margin-left: 1em
119
+ margin-left: 1em;
94
120
  }
95
121
  }
96
122
  }
97
123
 
98
124
  @each $name, $pair in $colors {
99
-
100
125
  $color: nth($pair, 1);
101
126
  $color-invert: nth($pair, 2);
102
127
 
@@ -1,7 +1,7 @@
1
1
  @charset "utf-8";
2
- @import url('https://fonts.googleapis.com/css?family=Montserrat');
2
+ @import url("https://fonts.googleapis.com/css?family=Montserrat");
3
3
 
4
- $family-sans-serif: 'Montserrat', sans-serif;
4
+ $family-sans-serif: "Montserrat", sans-serif;
5
5
  $primary: #188eac !default;
6
6
 
7
7
  $tabs-link-active-color: $primary;
@@ -16,5 +16,5 @@ $hero-darken: $dark !default;
16
16
  @import "block-list.scss";
17
17
 
18
18
  .gh-sponsor {
19
- color: #ea4aaa;
20
- }
19
+ color: #ea4aaa;
20
+ }
@@ -1,22 +1,22 @@
1
1
  {
2
- "name": "bulma-block-list",
3
- "version": "0.6.0",
4
- "description": "A simple scss package extending Bulma with block style list elements",
5
- "homepage": "https://github.com/chrisrhymes/bulma-block-list#readme",
6
- "bugs": {
7
- "url": "https://github.com/chrisrhymes/bulma-block-list/issues"
8
- },
9
- "main": "src/block-list.scss",
10
- "scripts": {},
11
- "keywords": [
12
- "Bulma",
13
- "List",
14
- "BlockList",
15
- "Unordered List"
16
- ],
17
- "author": "chrisrhymes",
18
- "license": "MIT",
19
- "dependencies": {
20
- "bulma": "^0.9.3"
21
- }
2
+ "name": "bulma-block-list",
3
+ "version": "0.7.0",
4
+ "description": "A simple scss package extending Bulma with block style list elements",
5
+ "homepage": "https://github.com/chrisrhymes/bulma-block-list#readme",
6
+ "bugs": {
7
+ "url": "https://github.com/chrisrhymes/bulma-block-list/issues"
8
+ },
9
+ "main": "src/block-list.scss",
10
+ "scripts": {},
11
+ "keywords": [
12
+ "Bulma",
13
+ "List",
14
+ "BlockList",
15
+ "Unordered List"
16
+ ],
17
+ "author": "chrisrhymes",
18
+ "license": "MIT",
19
+ "dependencies": {
20
+ "bulma": "^0.9.3"
21
+ }
22
22
  }
@@ -1,20 +1,47 @@
1
1
  @charset "utf-8";
2
2
 
3
+ // Custom divide function by @mdo from https://github.com/twbs/bootstrap/pull/34245
4
+ // Replaces old slash division deprecated in Dart Sass
5
+ @function customDivide($dividend, $divisor, $precision: 10) {
6
+ $sign: if($dividend > 0 and $divisor > 0, 1, -1);
7
+ $dividend: abs($dividend);
8
+ $divisor: abs($divisor);
9
+ $quotient: 0;
10
+ $remainder: $dividend;
11
+ @if $dividend == 0 {
12
+ @return 0;
13
+ }
14
+ @if $divisor == 0 {
15
+ @error "Cannot divide by 0";
16
+ }
17
+ @if $divisor == 1 {
18
+ @return $dividend;
19
+ }
20
+ @while $remainder >= $divisor {
21
+ $quotient: $quotient + 1;
22
+ $remainder: $remainder - $divisor;
23
+ }
24
+ @if $remainder > 0 and $precision > 0 {
25
+ $remainder: divide($remainder * 10, $divisor, $precision - 1) * 0.1;
26
+ }
27
+ @return ($quotient + $remainder) * $sign;
28
+ }
29
+
3
30
  $block-list-separator: 0.25rem !default;
4
31
  $block-list-highlight-width: 5px !default;
5
32
 
6
33
  .content {
7
34
  ul.block-list {
8
- list-style: none;
9
- margin-left: 0;
35
+ list-style: none;
36
+ margin-left: 0;
10
37
  }
11
- }
38
+ }
12
39
 
13
40
  .block-list {
14
41
  list-style: none;
15
42
 
16
43
  li {
17
- padding: ($gap / 2);
44
+ padding: customDivide($gap, 2);
18
45
  background: $light;
19
46
  margin-bottom: $block-list-separator;
20
47
  }
@@ -24,7 +51,6 @@ $block-list-highlight-width: 5px !default;
24
51
  text-align: left;
25
52
  }
26
53
 
27
-
28
54
  li.is-centered,
29
55
  &.is-centered > li {
30
56
  text-align: center;
@@ -38,7 +64,7 @@ $block-list-highlight-width: 5px !default;
38
64
  li.is-small,
39
65
  &.is-small > li {
40
66
  font-size: $small-font-size;
41
- padding: ($gap / 3);
67
+ padding: customDivide($gap, 3);
42
68
  }
43
69
 
44
70
  li.is-normal,
@@ -90,13 +116,12 @@ $block-list-highlight-width: 5px !default;
90
116
  &.is-right {
91
117
  .icon {
92
118
  margin-right: 0;
93
- margin-left: 1em
119
+ margin-left: 1em;
94
120
  }
95
121
  }
96
122
  }
97
123
 
98
124
  @each $name, $pair in $colors {
99
-
100
125
  $color: nth($pair, 1);
101
126
  $color-invert: nth($pair, 2);
102
127
 
data/package-lock.json CHANGED
@@ -1,45 +1,46 @@
1
1
  {
2
- "name": "bulma-clean-theme",
3
- "version": "1.0.0",
4
- "lockfileVersion": 2,
5
- "requires": true,
6
- "packages": {
7
- "": {
8
- "version": "1.0.0",
9
- "license": "MIT",
10
- "dependencies": {
11
- "bulma": "^0.9.3",
12
- "bulma-block-list": "^0.6"
13
- },
14
- "devDependencies": {}
2
+ "name": "bulma-clean-theme",
3
+ "version": "1.0.0",
4
+ "lockfileVersion": 2,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "bulma-clean-theme",
9
+ "version": "1.0.0",
10
+ "license": "MIT",
11
+ "dependencies": {
12
+ "bulma": "^0.9.3",
13
+ "bulma-block-list": "^0.7"
14
+ },
15
+ "devDependencies": {}
16
+ },
17
+ "node_modules/bulma": {
18
+ "version": "0.9.4",
19
+ "resolved": "https://registry.npmjs.org/bulma/-/bulma-0.9.4.tgz",
20
+ "integrity": "sha512-86FlT5+1GrsgKbPLRRY7cGDg8fsJiP/jzTqXXVqiUZZ2aZT8uemEOHlU1CDU+TxklPEZ11HZNNWclRBBecP4CQ=="
21
+ },
22
+ "node_modules/bulma-block-list": {
23
+ "version": "0.7.0",
24
+ "resolved": "https://registry.npmjs.org/bulma-block-list/-/bulma-block-list-0.7.0.tgz",
25
+ "integrity": "sha512-IicPQLcw4iX74waDAYhHT4LPbgc3qUPcrF5tOgNQGAUypoAcyiFjW2mBpLe+GCtQAYsDWmpu+X0nxhmUdOdAGw==",
26
+ "dependencies": {
27
+ "bulma": "^0.9.3"
28
+ }
29
+ }
15
30
  },
16
- "node_modules/bulma": {
17
- "version": "0.9.3",
18
- "resolved": "https://registry.npmjs.org/bulma/-/bulma-0.9.3.tgz",
19
- "integrity": "sha512-0d7GNW1PY4ud8TWxdNcP6Cc8Bu7MxcntD/RRLGWuiw/s0a9P+XlH/6QoOIrmbj6o8WWJzJYhytiu9nFjTszk1g=="
20
- },
21
- "node_modules/bulma-block-list": {
22
- "version": "0.6.0",
23
- "resolved": "https://registry.npmjs.org/bulma-block-list/-/bulma-block-list-0.6.0.tgz",
24
- "integrity": "sha512-Ub+5DS14YN1zTxfq2WbP7c3wfUKq2SpOTbFa8brhHUJe73WSfIgXQg02SYpbYWGalEkaflIRjzGKX35N4/jGOA==",
25
- "dependencies": {
26
- "bulma": "^0.9.3"
27
- }
28
- }
29
- },
30
- "dependencies": {
31
- "bulma": {
32
- "version": "0.9.3",
33
- "resolved": "https://registry.npmjs.org/bulma/-/bulma-0.9.3.tgz",
34
- "integrity": "sha512-0d7GNW1PY4ud8TWxdNcP6Cc8Bu7MxcntD/RRLGWuiw/s0a9P+XlH/6QoOIrmbj6o8WWJzJYhytiu9nFjTszk1g=="
35
- },
36
- "bulma-block-list": {
37
- "version": "0.6.0",
38
- "resolved": "https://registry.npmjs.org/bulma-block-list/-/bulma-block-list-0.6.0.tgz",
39
- "integrity": "sha512-Ub+5DS14YN1zTxfq2WbP7c3wfUKq2SpOTbFa8brhHUJe73WSfIgXQg02SYpbYWGalEkaflIRjzGKX35N4/jGOA==",
40
- "requires": {
41
- "bulma": "^0.9.3"
42
- }
31
+ "dependencies": {
32
+ "bulma": {
33
+ "version": "0.9.4",
34
+ "resolved": "https://registry.npmjs.org/bulma/-/bulma-0.9.4.tgz",
35
+ "integrity": "sha512-86FlT5+1GrsgKbPLRRY7cGDg8fsJiP/jzTqXXVqiUZZ2aZT8uemEOHlU1CDU+TxklPEZ11HZNNWclRBBecP4CQ=="
36
+ },
37
+ "bulma-block-list": {
38
+ "version": "0.7.0",
39
+ "resolved": "https://registry.npmjs.org/bulma-block-list/-/bulma-block-list-0.7.0.tgz",
40
+ "integrity": "sha512-IicPQLcw4iX74waDAYhHT4LPbgc3qUPcrF5tOgNQGAUypoAcyiFjW2mBpLe+GCtQAYsDWmpu+X0nxhmUdOdAGw==",
41
+ "requires": {
42
+ "bulma": "^0.9.3"
43
+ }
44
+ }
43
45
  }
44
- }
45
46
  }
data/package.json CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
- "name": "bulma-clean-theme",
3
- "description": "This is a clean and simple Jekyll Theme built with the Bulma framework, providing a modern looking site to start with.",
4
- "version": "1.0.0",
5
- "main": "index.js",
6
- "devDependencies": {},
7
- "scripts": {
8
- "test": "echo \"Error: no test specified\" && exit 1"
9
- },
10
- "author": "chrisrhymes",
11
- "license": "MIT",
12
- "dependencies": {
13
- "bulma": "^0.9.3",
14
- "bulma-block-list": "^0.6"
15
- }
2
+ "name": "bulma-clean-theme",
3
+ "description": "This is a clean and simple Jekyll Theme built with the Bulma framework, providing a modern looking site to start with.",
4
+ "version": "1.0.0",
5
+ "main": "index.js",
6
+ "devDependencies": {},
7
+ "scripts": {
8
+ "test": "echo \"Error: no test specified\" && exit 1"
9
+ },
10
+ "author": "chrisrhymes",
11
+ "license": "MIT",
12
+ "dependencies": {
13
+ "bulma": "^0.9.3",
14
+ "bulma-block-list": "^0.7"
15
+ }
16
16
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bulma-clean-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.13'
4
+ version: 0.13.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - chrisrhymes
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-02-17 00:00:00.000000000 Z
11
+ date: 2023-03-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -203,7 +203,6 @@ files:
203
203
  - node_modules/bulma-block-list/package.json
204
204
  - node_modules/bulma-block-list/src/block-list.scss
205
205
  - node_modules/bulma-block-list/src/demo.scss
206
- - node_modules/bulma/CHANGELOG.md
207
206
  - node_modules/bulma/LICENSE
208
207
  - node_modules/bulma/README.md
209
208
  - node_modules/bulma/bulma.sass