jekyll-applelike-theme 0.0.4 → 0.0.6
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/_layouts/default.html +4 -1
- data/_sass/bootstrap/functions.scss +105 -0
- data/_sass/bootstrap/mixins/breakpoints.scss +126 -0
- data/_sass/bootstrap/variables.scss +1104 -0
- data/_sass/jekyll-applelike-theme.scss +28 -0
- metadata +4 -1
@@ -0,0 +1,28 @@
|
|
1
|
+
@import "bootstrap/functions";
|
2
|
+
@import "bootstrap/variables";
|
3
|
+
@import "bootstrap/mixins/breakpoints";
|
4
|
+
|
5
|
+
.content {
|
6
|
+
max-width: 80rem;
|
7
|
+
|
8
|
+
@include media-breakpoint-only(xs) {
|
9
|
+
padding: 3rem 1rem;
|
10
|
+
}
|
11
|
+
|
12
|
+
@include media-breakpoint-only(sm) {
|
13
|
+
padding: 3rem 2rem;
|
14
|
+
}
|
15
|
+
|
16
|
+
@include media-breakpoint-only(md) {
|
17
|
+
padding: 3rem 4rem;
|
18
|
+
}
|
19
|
+
|
20
|
+
@include media-breakpoint-only(lg) {
|
21
|
+
padding: 3rem 6rem;
|
22
|
+
}
|
23
|
+
|
24
|
+
@include media-breakpoint-only(xl) {
|
25
|
+
padding: 3rem 12rem;
|
26
|
+
}
|
27
|
+
|
28
|
+
}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-applelike-theme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael Borgmann
|
@@ -65,6 +65,9 @@ files:
|
|
65
65
|
- _layouts/default.html
|
66
66
|
- _layouts/page.html
|
67
67
|
- _layouts/post.html
|
68
|
+
- _sass/bootstrap/functions.scss
|
69
|
+
- _sass/bootstrap/mixins/breakpoints.scss
|
70
|
+
- _sass/bootstrap/variables.scss
|
68
71
|
- _sass/jekyll-applelike-theme.scss
|
69
72
|
- assets/css/style.scss
|
70
73
|
- assets/img/logo.png
|