letitbex-theme 0.1.0 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e385e1832671b6dd36c2a216ab8ba510ae6cea3bc440de68b170d9726169b037
4
- data.tar.gz: e502fe5382860654c67d96672d0b891ded9343b9b138674e2abe6e09ffeecab7
3
+ metadata.gz: 2027a5903bc4aba32d6e9f7c30abe04b3a0522bbfb3fb0be347ea86793d55394
4
+ data.tar.gz: 5dea5be7342982387f99f7fd4f440cacd0816f8e4ef73b40f01a63209ed5e824
5
5
  SHA512:
6
- metadata.gz: 876abe862e6d014ad551cbc669f597e34549a3995b18eb8c04c3d9e6d9fbd8eff0f464bbf9697e89045451fba5205c636a0d4bd62c92da616a752f1c1a1a23c6
7
- data.tar.gz: ca424c3fa755d171a95de5f8fe9895549f6d257e19f05bcac5d0343a6e886ad0de7bae204f40d906b2171f4ace7eb03fd56efa1a5221b2d9b177900240714c00
6
+ metadata.gz: fd1388b83e253f2b95cd905a6c3492e8074cc5273506f88493a52de46a50636f6376e4f9502be0646d2fdb92c19af4c040f1ca06c304dede662b3a814092564b
7
+ data.tar.gz: 8ef70cd9b92faabe8718cb6903e80f9fadac009fa28fed2ddcf1079fbd2c0505bf85e47f7a7e34ccf5d4b7c44e9bab4d68083fe86014cf8e79dcd8fe1a674d03
data/README.md CHANGED
@@ -1 +1,19 @@
1
- A copy of [Jekyll-theme-console](https://github.com/b2a3e8/jekyll-theme-console) with minor personal changes.
1
+
2
+ ![letitbex-theme](assets/screenshot.png)
3
+ ![Code-Highlight](assets/Blockquote.png)
4
+
5
+ ## Installisation
6
+ - Add this line to Gemfile:
7
+ > gem "letitbex-theme"
8
+ - Fetch and update bundled gems by running the following Bundler command:
9
+ > bundle
10
+ - Set theme in _config.yml:
11
+ > theme: letitbex-theme
12
+
13
+ ## Usage
14
+ ### Addition configs to config.yml
15
+ - `header_pages`: to specify which pages should be displayed in navbar
16
+ - `footer`: string, which will be inserted on the end of the page (doesn't support markup, but html)
17
+
18
+
19
+
data/_sass/_hacker.scss CHANGED
@@ -7,6 +7,7 @@
7
7
  --border: dashed 1px rgba(0, 255, 0, 0.9);
8
8
  --selection-background: rgba(0, 255, 0, 0.99);
9
9
  --selection-text: #000;
10
+ --highlight-background: #080808;
10
11
  --background-color: #000;
11
12
  --text-color: var(--base-color);
12
13
  --placeholder-color: var(--base-color);
data/_sass/base.scss CHANGED
@@ -7,6 +7,7 @@
7
7
  //$base-font-family: 'Source Code Pro', monospace !default;
8
8
  $base-font-family: 'Envy Code R';
9
9
  $base-font-size: 16px !default;
10
+ $second-font-size: 13px;
10
11
  $mobile-font-size: 13px !default;
11
12
  $base-line-height: 1.5 !default;
12
13
  $container-width: 90% !default;
@@ -44,7 +45,6 @@ footer { margin-bottom: 20px; }
44
45
  /**
45
46
  * Lists
46
47
  */
47
- :not(.menu) > ul { list-style: none; padding-left: 0; }
48
48
  :not(.menu) > ul { list-style-type: none; }
49
49
  :not(.menu) > ul > li:before { content: "-"; margin-right: 9px; }
50
50
 
@@ -75,6 +75,8 @@ textarea { vertical-align: top; }
75
75
  * Code and syntax highlighting
76
76
  */
77
77
  .lineno { color: var(--code-color-1); margin-right: 15px; }
78
+ blockquote { background-color: var(--highlight-background); padding-top:5px; padding-bottom:1px; padding-left:8px; font-size: $second-font-size; color: var(--text-color); font-family: $base-font-family !important;}
79
+
78
80
  figure.highlight { margin: 5px 0; }
79
81
  pre { background-color: var(--background-color); border: none; padding: 0; margin: 0; overflow:auto; font-size: $base-font-size; color: var(--text-color); line-height: 1.7 !important; font-family: $base-font-family !important; }
80
82
  .highlight .hll { background-color: var(--code-color-2); }
Binary file
Binary file
metadata CHANGED
@@ -1,29 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: letitbex-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - mrtsukim0t0-
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-06-18 00:00:00.000000000 Z
11
+ date: 2021-08-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '4.2'
19
+ version: '3.5'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: '4.2'
26
+ version: '3.5'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: jekyll-seo-tag
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -76,7 +76,6 @@ files:
76
76
  - LICENSE.txt
77
77
  - README.md
78
78
  - _config.yml
79
- - _includes/favicon.png
80
79
  - _includes/footer.html
81
80
  - _includes/google-analytics.html
82
81
  - _includes/head.html
@@ -87,10 +86,12 @@ files:
87
86
  - _layouts/post.html
88
87
  - _sass/_hacker.scss
89
88
  - _sass/base.scss
89
+ - assets/Blockquote.png
90
90
  - assets/logo.png
91
91
  - assets/main-hacker.scss
92
92
  - assets/main.scss
93
- homepage: https://gitlbab.com/mrtsukim0t0-/letitbex-theme.git
93
+ - assets/screenshot.png
94
+ homepage: https://gitlab.com/mrtsukim0t0-/letitbex-theme.git
94
95
  licenses:
95
96
  - MIT
96
97
  metadata: {}
@@ -113,5 +114,5 @@ rubyforge_project:
113
114
  rubygems_version: 2.7.6.2
114
115
  signing_key:
115
116
  specification_version: 4
116
- summary: This is a copy of jekyll-theme-console which was tweaked a little bit.
117
+ summary: Personalised copy of jekyll-theme-console
117
118
  test_files: []
Binary file