jekyll-dash 1.0.7 → 1.0.8
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/LICENSE.txt +21 -21
- data/README.md +96 -48
- data/_includes/author.html +6 -6
- data/_includes/disqus.html +14 -14
- data/_includes/footer.html +5 -5
- data/_includes/head.html +13 -13
- data/_includes/pagination.html +26 -26
- data/_includes/tagcloud.html +7 -7
- data/_layouts/default.html +19 -19
- data/_layouts/home.html +36 -36
- data/_layouts/page.html +5 -5
- data/_layouts/post.html +42 -42
- data/_sass/dash/_animations.scss +5 -5
- data/_sass/dash/_base.scss +181 -181
- data/_sass/dash/_colors.scss +36 -36
- data/_sass/dash/_fonts.scss +15 -15
- data/_sass/dash/_syntax-highlighting.scss +71 -71
- data/_sass/dash.scss +43 -43
- data/assets/css/style.scss +5 -5
- metadata +2 -3
data/_sass/dash.scss
CHANGED
@@ -1,43 +1,43 @@
|
|
1
|
-
@charset "utf-8";
|
2
|
-
|
3
|
-
|
4
|
-
$base-font-family: 'Varela Round', sans-serif;
|
5
|
-
$syntax-font-family: 'Roboto Mono', monospace;
|
6
|
-
$base-font-size: 16px !default;
|
7
|
-
$post-link-font-size: $base-font-size * 1.25 !default;
|
8
|
-
$base-font-weight: 500 !default;
|
9
|
-
$small-font-size: $base-font-size * 0.875 !default;
|
10
|
-
$base-line-height: 1.5 !default;
|
11
|
-
$syntax-line-height: 1.2 !default;
|
12
|
-
|
13
|
-
// Width of the content area
|
14
|
-
$content-width: 800px !default;
|
15
|
-
|
16
|
-
$on-palm: 600px !default;
|
17
|
-
$on-laptop: 800px !default;
|
18
|
-
|
19
|
-
$on-medium: $on-palm !default;
|
20
|
-
$on-large: $on-laptop !default;
|
21
|
-
|
22
|
-
$spacing-unit: 30px !default;
|
23
|
-
|
24
|
-
|
25
|
-
@mixin media-query($device) {
|
26
|
-
@media screen and (max-width: $device) {
|
27
|
-
@content;
|
28
|
-
}
|
29
|
-
}
|
30
|
-
|
31
|
-
@mixin relative-font-size($ratio) {
|
32
|
-
font-size: $base-font-size * $ratio;
|
33
|
-
}
|
34
|
-
|
35
|
-
// Import partials.
|
36
|
-
@import
|
37
|
-
"dash/fonts",
|
38
|
-
"dash/colors",
|
39
|
-
"dash/animations",
|
40
|
-
"dash/base",
|
41
|
-
"dash/layout",
|
42
|
-
"dash/syntax-highlighting"
|
43
|
-
;
|
1
|
+
@charset "utf-8";
|
2
|
+
|
3
|
+
|
4
|
+
$base-font-family: 'Varela Round', sans-serif;
|
5
|
+
$syntax-font-family: 'Roboto Mono', monospace;
|
6
|
+
$base-font-size: 16px !default;
|
7
|
+
$post-link-font-size: $base-font-size * 1.25 !default;
|
8
|
+
$base-font-weight: 500 !default;
|
9
|
+
$small-font-size: $base-font-size * 0.875 !default;
|
10
|
+
$base-line-height: 1.5 !default;
|
11
|
+
$syntax-line-height: 1.2 !default;
|
12
|
+
|
13
|
+
// Width of the content area
|
14
|
+
$content-width: 800px !default;
|
15
|
+
|
16
|
+
$on-palm: 600px !default;
|
17
|
+
$on-laptop: 800px !default;
|
18
|
+
|
19
|
+
$on-medium: $on-palm !default;
|
20
|
+
$on-large: $on-laptop !default;
|
21
|
+
|
22
|
+
$spacing-unit: 30px !default;
|
23
|
+
|
24
|
+
|
25
|
+
@mixin media-query($device) {
|
26
|
+
@media screen and (max-width: $device) {
|
27
|
+
@content;
|
28
|
+
}
|
29
|
+
}
|
30
|
+
|
31
|
+
@mixin relative-font-size($ratio) {
|
32
|
+
font-size: $base-font-size * $ratio;
|
33
|
+
}
|
34
|
+
|
35
|
+
// Import partials.
|
36
|
+
@import
|
37
|
+
"dash/fonts",
|
38
|
+
"dash/colors",
|
39
|
+
"dash/animations",
|
40
|
+
"dash/base",
|
41
|
+
"dash/layout",
|
42
|
+
"dash/syntax-highlighting"
|
43
|
+
;
|
data/assets/css/style.scss
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
-
---
|
2
|
-
# Only the main Sass file needs front matter (the dashes are enough)
|
3
|
-
---
|
4
|
-
|
5
|
-
@import "dash";
|
1
|
+
---
|
2
|
+
# Only the main Sass file needs front matter (the dashes are enough)
|
3
|
+
---
|
4
|
+
|
5
|
+
@import "dash";
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-dash
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Miguel Gonzalez Sanchez
|
@@ -152,8 +152,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
152
152
|
- !ruby/object:Gem::Version
|
153
153
|
version: '0'
|
154
154
|
requirements: []
|
155
|
-
|
156
|
-
rubygems_version: 2.7.3
|
155
|
+
rubygems_version: 3.0.3
|
157
156
|
signing_key:
|
158
157
|
specification_version: 4
|
159
158
|
summary: A dark UI theme for Jekyll, inspired by Dash UI for Atom.
|