jekyll-theme-console 0.2.8 → 0.3.0
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/_includes/head.html +7 -1
- data/_layouts/default.html +0 -1
- data/_layouts/{blogroll.html → home.html} +0 -0
- data/_sass/{jekyll-theme-console.scss → base.scss} +0 -9
- data/_sass/dark.scss +15 -0
- data/_sass/light.scss +15 -0
- data/assets/{main.scss → main-dark.scss} +1 -1
- data/assets/main-light.scss +5 -0
- metadata +9 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dbfab9e6d7420ee10a6dc3aebd9540afc57b4d0f68e6c470ed33be8b1e5dc2f5
|
|
4
|
+
data.tar.gz: 6af40d37206410a41b3e9db9d5dcdca31c26d6f9eec9112ea91c43009fa35a8e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 36b389b0521f9b062333ca67d5b9467387a63e4783dca625fc53f06a782704b67bde4919e648eb0cf905c79250215d9d85b9eed24407e129c9ec1b03306719d9
|
|
7
|
+
data.tar.gz: 21ede9db10bc8d29541f65493059cc5da6db8f1b22c5cb3fc95c76dc79a87c56c656a82d0ebbce4574721f1f6dbc54282fc412332d0fa66a33026428262a9297
|
data/_includes/head.html
CHANGED
|
@@ -4,7 +4,13 @@
|
|
|
4
4
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
|
5
5
|
<title>{{ site.title }}{{ page.title }}</title>
|
|
6
6
|
{%- seo title=false -%}
|
|
7
|
-
|
|
7
|
+
|
|
8
|
+
{%- if site.style == 'light' -%}
|
|
9
|
+
<link rel="stylesheet" type="text/css" href="{{ "/assets/main-light.css" | relative_url }}">
|
|
10
|
+
{%- else -%}
|
|
11
|
+
<link rel="stylesheet" type="text/css" href="{{ "/assets/main-dark.css" | relative_url }}">
|
|
12
|
+
{%- endif -%}
|
|
13
|
+
|
|
8
14
|
{%- if jekyll.environment == 'production' and site.google_analytics -%}
|
|
9
15
|
{%- include google-analytics.html -%}
|
|
10
16
|
{%- endif -%}
|
data/_layouts/default.html
CHANGED
|
File without changes
|
|
@@ -8,15 +8,6 @@ $base-font-family: 'Source Code Pro', monospace !default;
|
|
|
8
8
|
$base-font-size: 12.5px !default;
|
|
9
9
|
$mobile-font-size: 12px !default;
|
|
10
10
|
$base-line-height: 1.5 !default;
|
|
11
|
-
$base-color: #DBDBDB !default;
|
|
12
|
-
$primary-color: #a1fc8f !default;
|
|
13
|
-
$text-color: $base-color !default;
|
|
14
|
-
$placeholder-color: $base-color !default;
|
|
15
|
-
$link-color: $base-color !default;
|
|
16
|
-
$border: dashed 1px rgba(219,219,219,0.9) !default;
|
|
17
|
-
$selection-background: rgba(219,219,219,0.99) !default;
|
|
18
|
-
$selection-text: #000 !default;
|
|
19
|
-
$background-color: #000 !default;
|
|
20
11
|
$container-width: 90% !default;
|
|
21
12
|
$container-max-width: 600px !default;
|
|
22
13
|
|
data/_sass/dark.scss
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Style variables
|
|
3
|
+
*/
|
|
4
|
+
$base-color: #DBDBDB !default;
|
|
5
|
+
$primary-color: #a1fc8f !default;
|
|
6
|
+
$text-color: $base-color !default;
|
|
7
|
+
$placeholder-color: $base-color !default;
|
|
8
|
+
$link-color: $base-color !default;
|
|
9
|
+
$border: dashed 1px rgba(219,219,219,0.9) !default;
|
|
10
|
+
$selection-background: rgba(219,219,219,0.99) !default;
|
|
11
|
+
$selection-text: #000 !default;
|
|
12
|
+
$background-color: #000 !default;
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
@import "base";
|
data/_sass/light.scss
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Style variables
|
|
3
|
+
*/
|
|
4
|
+
$base-color: #000 !default;
|
|
5
|
+
$primary-color: #0000EE !default;
|
|
6
|
+
$text-color: $base-color !default;
|
|
7
|
+
$placeholder-color: $base-color !default;
|
|
8
|
+
$link-color: $base-color !default;
|
|
9
|
+
$border: dashed 1px rgba(0,0,0,1) !default;
|
|
10
|
+
$selection-background: rgba(0,0,0,0.99) !default;
|
|
11
|
+
$selection-text: #fff !default;
|
|
12
|
+
$background-color: #fff !default;
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
@import "base";
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-console
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- b2a3e8
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2019-04-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -79,12 +79,15 @@ files:
|
|
|
79
79
|
- _includes/google-analytics.html
|
|
80
80
|
- _includes/head.html
|
|
81
81
|
- _includes/header.html
|
|
82
|
-
- _layouts/blogroll.html
|
|
83
82
|
- _layouts/default.html
|
|
83
|
+
- _layouts/home.html
|
|
84
84
|
- _layouts/page.html
|
|
85
85
|
- _layouts/post.html
|
|
86
|
-
- _sass/
|
|
87
|
-
-
|
|
86
|
+
- _sass/base.scss
|
|
87
|
+
- _sass/dark.scss
|
|
88
|
+
- _sass/light.scss
|
|
89
|
+
- assets/main-dark.scss
|
|
90
|
+
- assets/main-light.scss
|
|
88
91
|
homepage: https://github.com/b2a3e8/jekyll-theme-console
|
|
89
92
|
licenses:
|
|
90
93
|
- MIT
|
|
@@ -104,8 +107,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
104
107
|
- !ruby/object:Gem::Version
|
|
105
108
|
version: '0'
|
|
106
109
|
requirements: []
|
|
107
|
-
|
|
108
|
-
rubygems_version: 2.7.6
|
|
110
|
+
rubygems_version: 3.0.3
|
|
109
111
|
signing_key:
|
|
110
112
|
specification_version: 4
|
|
111
113
|
summary: A jekyll theme with inspiration from linux consoles for hackers, developers
|