jekyll-bulma 1.0.2 → 1.0.4
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/_overrides.scss +10 -1
- data/_sass/sass/elements/content.scss +10 -0
- data/assets/css/main.scss +0 -2
- data/assets/css/ubuntu.css +8 -0
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7930ed03550dd904027eeefaf491e7d2364c23ae82be6fc47fcdaf5109f63ec5
|
|
4
|
+
data.tar.gz: 26e7698f8d07534ea9cb06131e7a1f815bb0bc279e20f24e1da9a18b03eab3cf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c9f08496e56af90f542c4b72a9b9e1a2520e3f84042828f1befe9762b9f4bee75176cc8b3376c4f88ac4b4c38cf16bb0dc38c7c7e43b6eef96173f9402df013f
|
|
7
|
+
data.tar.gz: 7bfacfc463e9f50e32091492524ff15e9e0bb434d24d447294268daa529acb4b9f714c3d777cbc542ed504b16d3b16d41ba259fc6521ba8dcedfe15457173477
|
data/_sass/_overrides.scss
CHANGED
|
@@ -172,6 +172,16 @@ $content-table-foot-cell-color: #{cv.getVar("text-strong")} !default;
|
|
|
172
172
|
margin-bottom: 0.25em;
|
|
173
173
|
margin-top: 0.25em;
|
|
174
174
|
|
|
175
|
+
// Without this, the outer "&:not(:first-child) { margin-top: 1em }" above wins on
|
|
176
|
+
// specificity (a pseudo-class counts like a class, so ".content ul:not(:first-child)"
|
|
177
|
+
// outranks ".content ul ul") whenever this nested list isn't its <li>'s first child
|
|
178
|
+
// element - e.g. any "* [a link](url)" item followed by a sub-list, where the <a> becomes
|
|
179
|
+
// the true first child. Repeating :not(:first-child) here matches that specificity so the
|
|
180
|
+
// intended tight nested spacing actually applies regardless of what precedes the sub-list.
|
|
181
|
+
&:not(:first-child) {
|
|
182
|
+
margin-top: 0.25em;
|
|
183
|
+
}
|
|
184
|
+
|
|
175
185
|
ul {
|
|
176
186
|
list-style-type: square;
|
|
177
187
|
}
|
data/assets/css/main.scss
CHANGED
|
@@ -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.
|
|
4
|
+
version: 1.0.4
|
|
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
|