jekyll-theme-console 0.2.2 → 0.2.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +7 -1
- data/_sass/jekyll-theme-console.scss +11 -9
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3e9cd89a12b4f72d7a9cfa38ccd05695e3165078316de15d8653e9325d2e114e
|
4
|
+
data.tar.gz: 13c5b848b2c241fc290384709f82d3c2c718a43760286a07d53a4f6ebf3bbce4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2f5e65316487bf424235bba9373011243360fa5d5c2ed615e49ae0934033f5a2387c7e5d2df74e454e59632438d8b30e622f84c21c587a69ade8675ad2100df7
|
7
|
+
data.tar.gz: 2632db78388537cf897217e950d13f49cc37429def7b4b1783ae403a3305a6e76f49c58cddc1b6b62d129da0dc618055522d5004f328de8a08c7a569c4253732
|
data/README.md
CHANGED
@@ -2,7 +2,13 @@
|
|
2
2
|
|
3
3
|
A jekyll theme with inspiration from linux consoles for hackers, developers and script kiddies.
|
4
4
|
|
5
|
-
![Screenshot](screenshot.
|
5
|
+
![Screenshot](screenshot.gif)
|
6
|
+
|
7
|
+
|
8
|
+
## Demo
|
9
|
+
|
10
|
+
[https://b2a3e8.github.io/jekyll-theme-console/](https://b2a3e8.github.io/jekyll-theme-console/)
|
11
|
+
|
6
12
|
|
7
13
|
## Installation
|
8
14
|
|
@@ -1,31 +1,33 @@
|
|
1
1
|
@charset "utf-8";
|
2
|
-
@import url('https://fonts.googleapis.com/css?family=Source+Code+Pro');
|
2
|
+
@import url('https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700');
|
3
3
|
|
4
4
|
/**
|
5
5
|
* Style variables
|
6
6
|
*/
|
7
7
|
$base-font-family: 'Source Code Pro', monospace !default;
|
8
|
-
$base-font-size:
|
9
|
-
$base-line-height: 1.
|
8
|
+
$base-font-size: 12.5px !default;
|
9
|
+
$base-line-height: 1.5 !default;
|
10
10
|
$text-color: #fff !default;
|
11
|
+
$link-color: #fff !default;
|
11
12
|
$background-color: #000 !default;
|
12
13
|
$primary-color: #a1fc8f !default;
|
14
|
+
$container-width: 90% !default;
|
13
15
|
$container-max-width: 600px !default;
|
14
16
|
|
15
17
|
/**
|
16
18
|
* Global
|
17
19
|
*/
|
18
|
-
body { background-color: $background-color; margin: 0 auto; padding: 0; font-family: $base-font-family; font-size:
|
19
|
-
h1, h2, h3, h4, h5, h6 { font-size:
|
20
|
-
p { margin: 0px; }
|
21
|
-
a { text-decoration: underline; color:
|
20
|
+
body { background-color: $background-color; margin: 0 auto; padding: 0; font-family: $base-font-family; font-size: $base-font-size; color: $text-color; text-align: left; line-height: $base-line-height !important; }
|
21
|
+
h1, h2, h3, h4, h5, h6 { font-size: $base-font-size; margin: 0px; margin-top: 25px; font-weight: bold; color: $text-color; }
|
22
|
+
p { margin: 0px; color: $text-color; }
|
23
|
+
a { text-decoration: underline; color: $link-color; }
|
22
24
|
a:hover { color: #000; background-color: #fff; }
|
23
25
|
.primary-text { color: $primary-color; }
|
24
26
|
|
25
27
|
/**
|
26
28
|
* Layout
|
27
29
|
*/
|
28
|
-
.container { width:
|
30
|
+
.container { width: $container-width; max-width: $container-max-width; margin-right: auto; margin-left: auto; }
|
29
31
|
p { word-wrap: break-word; word-break: break-word; white-space: pre-wrap; }
|
30
32
|
footer { color: #fff; border-top: dashed 1px rgba(255,255,255,0.8); margin: 20px auto 15px; padding-top: 10px; text-align: right; }
|
31
33
|
header { margin-top: 25px; margin-bottom: 10px; color: rgba(161,252,143,1); }
|
@@ -56,7 +58,7 @@ header p { text-align: left; margin: 0; color: rgba(255,255,255,1); }
|
|
56
58
|
/**
|
57
59
|
* Code and syntax highlighting
|
58
60
|
*/
|
59
|
-
pre { background-color: rgba(255,255,255,0); border: none; padding: 0px; overflow:auto; font-size:
|
61
|
+
pre { background-color: rgba(255,255,255,0); border: none; padding: 0px; overflow:auto; font-size: $base-font-size; color: rgba(255,255,255,0.65); line-height: 1.7 !important; }
|
60
62
|
.highlight .c { color: #999988; font-style: italic } /* Comment */
|
61
63
|
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
|
62
64
|
.highlight .k { font-weight: bold } /* Keyword */
|
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.2.
|
4
|
+
version: 0.2.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- b2a3e8
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-11-
|
11
|
+
date: 2018-11-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|