jekyll-bulma 1.0.0 → 1.0.1
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 +4 -4
- data/_sass/_syntax-highlighting.scss +5 -1
- data/_sass/line-awesome/scss/_bordered_pulled.scss +2 -0
- data/_sass/line-awesome/scss/_fixed-width.scss +2 -0
- data/_sass/line-awesome/scss/_icons.scss +2 -0
- data/_sass/line-awesome/scss/_larger.scss +2 -0
- data/_sass/line-awesome/scss/_list.scss +4 -1
- data/_sass/line-awesome/scss/_path.scss +2 -0
- data/_sass/line-awesome/scss/_screen-reader.scss +2 -0
- data/_sass/line-awesome/scss/_stacked.scss +2 -0
- data/_sass/line-awesome/scss/_variables.scss +5 -2
- data/_sass/line-awesome/scss/line-awesome.scss +12 -12
- data/assets/css/main.scss +6 -7
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6cd1b1d1463a17ec339ae575db90a97a1fde671db4c988942f4a98d1c7cf8c35
|
|
4
|
+
data.tar.gz: 8a4e29ee850e580a966e020fbb1b09d98062815a8bb56d4a9dd876d39297af60
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7045fcc616dbfd82098ce5d8f2b14e5e275f83bb0c6c70accbe9e8a9fb7e441f70739f935c61198e2911719c9f8744e949212d6636e48cbbebf63101a771f178
|
|
7
|
+
data.tar.gz: 568f5fab8a2ea559d065ab8cbe90f6695260135a2fd61fd82462b628fd4776730c951222e7f3ab39d810f302eca7654a98fed3b5b3f19e1a8ee500d6e97488d3
|
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Syntax highlighting styles
|
|
3
3
|
*/
|
|
4
|
+
@use "sass:math";
|
|
5
|
+
|
|
6
|
+
$spacing-unit: 30px !default;
|
|
7
|
+
|
|
4
8
|
.highlight {
|
|
5
9
|
background: #fff;
|
|
6
|
-
margin-bottom: $spacing-unit
|
|
10
|
+
margin-bottom: math.div($spacing-unit, 2);
|
|
7
11
|
|
|
8
12
|
.highlighter-rouge & {
|
|
9
13
|
background: #eef;
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
@use "sass:math";
|
|
2
|
+
@use "variables" as *;
|
|
3
|
+
|
|
1
4
|
.#{$la-css-prefix}-ul {
|
|
2
5
|
padding-left: 0;
|
|
3
6
|
margin-left: $la-li-width;
|
|
@@ -14,6 +17,6 @@
|
|
|
14
17
|
width: $la-li-width;
|
|
15
18
|
line-height: inherit;
|
|
16
19
|
&.#{$la-css-prefix}-lg {
|
|
17
|
-
left: -$la-li-width + (4em
|
|
20
|
+
left: -$la-li-width + math.div(4em, 14);
|
|
18
21
|
}
|
|
19
22
|
}
|
|
@@ -1,13 +1,16 @@
|
|
|
1
|
+
@use "sass:string";
|
|
2
|
+
@use "sass:math";
|
|
3
|
+
|
|
1
4
|
$la-font-path: "../fonts/line-awesome" !default;
|
|
2
5
|
$la-font-size-base: 14px !default;
|
|
3
6
|
$la-line-height-base: 1 !default;
|
|
4
7
|
$la-border-color: #eee !default;
|
|
5
8
|
$la-inverse: #fff !default;
|
|
6
9
|
$la-version: 1.3.0 !default;
|
|
7
|
-
$la-li-width: (20em
|
|
10
|
+
$la-li-width: math.div(20em, 14) !default;
|
|
8
11
|
|
|
9
12
|
@function la-content($la-var) {
|
|
10
|
-
@return unquote("\"#{ $la-var }\"");
|
|
13
|
+
@return string.unquote("\"#{ $la-var }\"");
|
|
11
14
|
}
|
|
12
15
|
|
|
13
16
|
$la-css-prefix: la;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
@
|
|
2
|
-
@
|
|
3
|
-
@
|
|
4
|
-
@
|
|
5
|
-
@
|
|
6
|
-
@
|
|
7
|
-
@
|
|
8
|
-
@
|
|
9
|
-
@
|
|
10
|
-
@
|
|
11
|
-
@
|
|
12
|
-
@
|
|
1
|
+
@forward "mixins";
|
|
2
|
+
@forward "core";
|
|
3
|
+
@forward "variables";
|
|
4
|
+
@forward "path";
|
|
5
|
+
@forward "larger";
|
|
6
|
+
@forward "fixed-width";
|
|
7
|
+
@forward "list";
|
|
8
|
+
@forward "bordered_pulled";
|
|
9
|
+
@forward "rotated-flipped";
|
|
10
|
+
@forward "stacked";
|
|
11
|
+
@forward "icons";
|
|
12
|
+
@forward "screen-reader";
|
data/assets/css/main.scss
CHANGED
|
@@ -3,11 +3,10 @@
|
|
|
3
3
|
---
|
|
4
4
|
|
|
5
5
|
@charset "utf-8";
|
|
6
|
-
|
|
6
|
+
@use "presets";
|
|
7
|
+
@use "bulma";
|
|
8
|
+
@use "syntax-highlighting" with ($spacing-unit: 30px);
|
|
9
|
+
@use "line-awesome/scss/line-awesome";
|
|
10
|
+
@use "overrides";
|
|
7
11
|
|
|
8
|
-
$
|
|
9
|
-
@import "presets";
|
|
10
|
-
@import "bulma";
|
|
11
|
-
@import "syntax-highlighting";
|
|
12
|
-
@import "line-awesome/scss/line-awesome";
|
|
13
|
-
@import "overrides";
|
|
12
|
+
$font-family-base: Ubuntu, Helvetica, Arial, sans-serif;
|