letitbex-theme 0.1.1 → 0.1.7.1

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: 68f486bee4ea1d5aa114baf454ca9eeb65aeed4f4eb52fd6e569120c0ec7e9ad
4
- data.tar.gz: 49b205f640764e25afef42ef111d2cefa004a07475f6b9b35eaa153946c10cc9
3
+ metadata.gz: f859cdfb4063608784a10816cb9d4e31b9be5a3bd95121fe08f2df1d02fba50a
4
+ data.tar.gz: ce216c384bc0c810e43c8f3b8e0770dff2fdba9e59ec04893132e6ee01e1499f
5
5
  SHA512:
6
- metadata.gz: 0cb81d8edfb6195aef1a446e0de37124cbb783cc90987721b7a4b7925d6cdaa57010983028050fb6c9b57f0e4bb5d1fd285f4128a77b371d2e4a7007a035e908
7
- data.tar.gz: f1d0e9720d8bcbe4b6f52f83a7efb6563ded38371122fc5cbb2964986d105c3db838c41adbebc7b5266038e93745c9adc247dc090b380988808d418626bab845
6
+ metadata.gz: 935854436352e532966de6ef1c5acb845ef8fc6b8d67645f9dfdd93c8420b2fb47ac414f6b97662ca093268c2a46c1b865124f5ecfba51dcab43b0a972602857
7
+ data.tar.gz: b03ba4ce9867ced04a51dd18c2184c2287f32c21565a99eb9562f18cf7b8fabbe5803176ac6890fe1cc60d811a7364051d28989af5f51c16b39dac86f05081fb
data/README.md CHANGED
@@ -1 +1,33 @@
1
- A copy of [Jekyll-theme-console](https://github.com/b2a3e8/jekyll-theme-console) with minor personal changes.
1
+ ## Installisation
2
+ - Add this line to Gemfile:
3
+ > gem "letitbex-theme"
4
+ - Fetch and update bundled gems by running the following Bundler command:
5
+ > bundle
6
+ - Set theme and style in _config.yml:
7
+ > theme: letitbex-theme
8
+ > style: hacker
9
+ hacker is the default style. The available styles are listed below
10
+
11
+ ## Usage
12
+ ### Addition configs to config.yml
13
+ - `header_pages`: to specify which pages should be displayed in navbar
14
+ - `footer`: string, which will be inserted on the end of the page (doesn't support markup, but html)
15
+
16
+ ## Styles
17
+ ### d1
18
+ ![d1](d1.gif)
19
+
20
+ ### dune
21
+ ![dune](dune.gif)
22
+
23
+ ### gits
24
+ ![gits](gits.gif)
25
+
26
+ ### hacker
27
+ ![hacker](hacker.gif)
28
+
29
+ ### leaves
30
+ ![leaves](leaves.gif)
31
+
32
+ ### neon
33
+ ![neon](neon.gif)
data/_config.yml CHANGED
@@ -6,6 +6,7 @@ theme: letitbex-theme
6
6
 
7
7
  author: mrtsukim0t0-
8
8
  description: something something
9
+ theme: letitbex-theme
9
10
  style: hacker
10
11
  plugins:
11
12
  - jekyll-seo-tag
data/_includes/head.html CHANGED
@@ -3,13 +3,24 @@
3
3
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
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 }}</title>
6
- {%- seo title=false -%}
7
6
 
8
7
  {% if page.robots %}
9
8
  <meta name="robots" content="{{page.robots}}" />
10
9
  {% endif %}
11
10
 
11
+ {%- if site.style == 'gits' -%}
12
+ <link rel="stylesheet" type="text/css" href="{{ "/assets/main-gits.css" | relative_url }}">
13
+ {%- elsif site.style == 'leaves' -%}
14
+ <link rel="stylesheet" type="text/css" href="{{ "/assets/main-leaves.css" | relative_url }}">
15
+ {%- elsif site.style == 'dune' -%}
16
+ <link rel="stylesheet" type="text/css" href="{{ "/assets/main-dune.css" | relative_url }}">
17
+ {%- elsif site.style == 'd1' -%}
18
+ <link rel="stylesheet" type="text/css" href="{{ "/assets/main-d1.css" | relative_url }}">
19
+ {%- elsif site.style == 'neon' -%}
20
+ <link rel="stylesheet" type="text/css" href="{{ "/assets/main-neon.css" | relative_url }}">
21
+ {%- elsif site.style == 'hacker' -%}
12
22
  <link rel="stylesheet" type="text/css" href="{{ "/assets/main-hacker.css" | relative_url }}">
23
+ {%- endif -%}
13
24
  <link rel="shortcut icon" type="image/png" href="{{ site.logo }}" >
14
25
 
15
26
  {%- if jekyll.environment == 'production' and site.google_analytics -%}
data/_sass/_d1.scss ADDED
@@ -0,0 +1,34 @@
1
+ /**
2
+ * Hacker theme variables
3
+ */
4
+
5
+ :root {
6
+ --base-color: var(--code-color-15);
7
+ --border: dashed 1px var(--code-color-14);
8
+ --selection-background: var(--code-color-15);
9
+ --selection-text: var(--code-color-16);
10
+ --highlight-background: var(--code-color-13);
11
+ --background-color: var(--code-color-0);
12
+ --text-color: var(--base-color);
13
+ --placeholder-color: var(--base-color);
14
+ --link-color: var(--code-color-8);
15
+ --code-color-0: #0a0b08;
16
+ --code-color-1: #675638;
17
+ --code-color-2: #555B47;
18
+ --code-color-3: #5A6651;
19
+ --code-color-4: #6E6754;
20
+ --code-color-5: #656D56;
21
+ --code-color-6: #936D51;
22
+ --code-color-7: #ccc0ac;
23
+ --code-color-8: #8e8678;
24
+ --code-color-9: #675638;
25
+ --code-color-10: #555B47;
26
+ --code-color-11: #5A6651;
27
+ --code-color-12: #6E6754;
28
+ --code-color-13: #656D56;
29
+ --code-color-14: #936D51;
30
+ --code-color-15: #ccc0ac;
31
+ --code-color-16: #587488;
32
+ --code-color-17: #87898a;
33
+ --code-color-18: #788790;
34
+ }
data/_sass/_dune.scss ADDED
@@ -0,0 +1,34 @@
1
+ /**
2
+ * Hacker theme variables
3
+ */
4
+
5
+ :root {
6
+ --base-color: var(--code-color-0);
7
+ --border: dashed 1px var(--code-color-17);
8
+ --selection-background: var(--code-color-16);
9
+ --selection-text: var(--code-color-8);
10
+ --highlight-background: var(--code-color-9);
11
+ --background-color: var(--code-color-2);
12
+ --text-color: var(--base-color);
13
+ --placeholder-color: var(--base-color);
14
+ --link-color: var(--code-color-17);
15
+ --code-color-0: #422001;
16
+ --code-color-1: #F5AF50;
17
+ --code-color-2: #F4B76D;
18
+ --code-color-3: #FEC15C;
19
+ --code-color-4: #FDC773;
20
+ --code-color-5: #F8C890;
21
+ --code-color-6: #DCC3BA;
22
+ --code-color-7: #ead7c8;
23
+ --code-color-8: #a3968c;
24
+ --code-color-9: #F5AF50;
25
+ --code-color-10: #F4B76D;
26
+ --code-color-11: #FEC15C;
27
+ --code-color-12: #FDC773;
28
+ --code-color-13: #F8C890;
29
+ --code-color-14: #DCC3BA;
30
+ --code-color-15: #ead7c8;
31
+ --code-color-16: #ffffff;
32
+ --code-color-17: #514B46;
33
+ --code-color-18: #5e4807;
34
+ }
data/_sass/_gits.scss ADDED
@@ -0,0 +1,34 @@
1
+ /**
2
+ * Hacker theme variables
3
+ */
4
+
5
+ :root {
6
+ --base-color: var(--code-color-15);
7
+ --border: dashed 1px var(--code-color-14);
8
+ --selection-background: var(--code-color-5);
9
+ --selection-text: var(--code-color-0);
10
+ --highlight-background: var(--code-color-2);
11
+ --background-color: var(--code-color-0);
12
+ --text-color: var(--base-color);
13
+ --placeholder-color: var(--base-color);
14
+ --link-color: var(--code-color-2);
15
+ --code-color-0: #15121d;
16
+ --code-color-1: #8E767F;
17
+ --code-color-2: #3F7782;
18
+ --code-color-3: #587488;
19
+ --code-color-4: #717985;
20
+ --code-color-5: #788790;
21
+ --code-color-6: #75ADC5;
22
+ --code-color-7: #c1c5c6;
23
+ --code-color-8: #87898a;
24
+ --code-color-9: #8E767F;
25
+ --code-color-10: #3F7782;
26
+ --code-color-11: #587488;
27
+ --code-color-12: #717985;
28
+ --code-color-13: #788790;
29
+ --code-color-14: #75ADC5;
30
+ --code-color-15: #c1c5c6;
31
+ --code-color-16: #587488;
32
+ --code-color-17: #87898a;
33
+ --code-color-18: #788790;
34
+ }
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);
@@ -0,0 +1,34 @@
1
+ /**
2
+ * Hacker theme variables
3
+ */
4
+
5
+ :root {
6
+ --base-color: var(--code-color-15);
7
+ --border: dashed 1px var(--code-color-14);
8
+ --selection-background: var(--code-color-5);
9
+ --selection-text: var(--code-color-15);
10
+ --highlight-background: var(--code-color-13);
11
+ --background-color: var(--code-color-0);
12
+ --text-color: var(--base-color);
13
+ --placeholder-color: var(--base-color);
14
+ --link-color: var(--code-color-2);
15
+ --code-color-0: #0e0f10;
16
+ --code-color-1: #526661;
17
+ --code-color-2: #3E816D;
18
+ --code-color-3: #628679;
19
+ --code-color-4: #AD4A8D;
20
+ --code-color-5: #73978B;
21
+ --code-color-6: #93AEA4;
22
+ --code-color-7: #ccd9d4;
23
+ --code-color-8: #8e9794;
24
+ --code-color-9: #526661;
25
+ --code-color-10: #3E816D;
26
+ --code-color-11: #628679;
27
+ --code-color-12: #AD4A8D;
28
+ --code-color-13: #73978B;
29
+ --code-color-14: #93AEA4;
30
+ --code-color-15: #ccd9d4;
31
+ --code-color-16: #587488;
32
+ --code-color-17: #87898a;
33
+ --code-color-18: #788790;
34
+ }
data/_sass/_neon.scss ADDED
@@ -0,0 +1,34 @@
1
+ /**
2
+ * Hacker theme variables
3
+ */
4
+
5
+ :root {
6
+ --base-color: var(--code-color-15);
7
+ --border: dashed 1px var(--code-color-14);
8
+ --selection-background: var(--code-color-5);
9
+ --selection-text: var(--code-color-0);
10
+ --highlight-background: var(--code-color-13);
11
+ --background-color: var(--code-color-0);
12
+ --text-color: var(--base-color);
13
+ --placeholder-color: var(--base-color);
14
+ --link-color: var(--code-color-2);
15
+ --code-color-0: #022937;
16
+ --code-color-1: #8A3279;
17
+ --code-color-2: #8D497B;
18
+ --code-color-3: #3A9C6C;
19
+ --code-color-4: #2F628E;
20
+ --code-color-5: #A5338B;
21
+ --code-color-6: #B35499;
22
+ --code-color-7: #92c8c6;
23
+ --code-color-8: #668c8a;
24
+ --code-color-9: #8A3279;
25
+ --code-color-10: #8D497B;
26
+ --code-color-11: #3A9C6C;
27
+ --code-color-12: #2F628E;
28
+ --code-color-13: #A5338B;
29
+ --code-color-14: #B35499;
30
+ --code-color-15: #92c8c6;
31
+ --code-color-16: #587488;
32
+ --code-color-17: #87898a;
33
+ --code-color-18: #788790;
34
+ }
data/_sass/base.scss CHANGED
@@ -1,12 +1,14 @@
1
1
  @charset "utf-8";
2
- @import url('https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700');
3
-
2
+ @font-face {
3
+ font-family: Iosevka;
4
+ src: url(https://mrtsukimoto.in/Iosevka-Nerd-Font.ttf) format(truetype);
5
+ }
4
6
  /**
5
7
  * Style variables
6
8
  */
7
- //$base-font-family: 'Source Code Pro', monospace !default;
8
- $base-font-family: 'Envy Code R';
9
+ $base-font-family: 'Iosevka';
9
10
  $base-font-size: 16px !default;
11
+ $second-font-size: 13px;
10
12
  $mobile-font-size: 13px !default;
11
13
  $base-line-height: 1.5 !default;
12
14
  $container-width: 90% !default;
@@ -17,10 +19,10 @@ $container-max-width: 600px !default;
17
19
  */
18
20
  body { background-color: var(--background-color); margin: 0 auto; padding: 0; font-family: $base-font-family; font-size: $base-font-size; color: var(--text-color); text-align: left; line-height: $base-line-height !important; }
19
21
  h1, h2, h3, h4, h5, h6 { font-size: $base-font-size; margin: 0px; margin-top: 22px; font-weight: bold; color: var(--text-color); }
20
- p, ul, ol { margin: 0px; color: var(--text-color); }
22
+ ul, ol { margin: 0px; color: var(--text-color); }
21
23
  img { display: inline-block; margin-left:auto; margin-right: auto; }
22
- // #logo_foot { display:inline ;margin-left: auto; margin-right:auto; }
23
- // #logo_head { display:inline-block ;margin-left: auto; margin-right:auto; }
24
+ #logo_foot { display:initial ;margin-left: auto; margin-right:auto; }
25
+ #logo_head { display:initial ;margin-left: auto; margin-right:auto; }
24
26
  a { text-decoration: none; color: var(--link-color); }
25
27
  a:hover { color: var(--background-color); background-color: var(--base-color); }
26
28
  @media only screen and (max-device-width: 500px) { * { font-size: $mobile-font-size !important; } }
@@ -44,7 +46,6 @@ footer { margin-bottom: 20px; }
44
46
  /**
45
47
  * Lists
46
48
  */
47
- :not(.menu) > ul { list-style: none; padding-left: 0; }
48
49
  :not(.menu) > ul { list-style-type: none; }
49
50
  :not(.menu) > ul > li:before { content: "-"; margin-right: 9px; }
50
51
 
@@ -75,6 +76,8 @@ textarea { vertical-align: top; }
75
76
  * Code and syntax highlighting
76
77
  */
77
78
  .lineno { color: var(--code-color-1); margin-right: 15px; }
79
+ 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;}
80
+
78
81
  figure.highlight { margin: 5px 0; }
79
82
  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
83
  .highlight .hll { background-color: var(--code-color-2); }
@@ -0,0 +1,6 @@
1
+ ---
2
+ # Only the main Sass file needs front matter (the dashes are enough)
3
+ ---
4
+
5
+ @import "d1";
6
+ @import "base";
@@ -0,0 +1,6 @@
1
+ ---
2
+ # Only the main Sass file needs front matter (the dashes are enough)
3
+ ---
4
+
5
+ @import "dune";
6
+ @import "base";
@@ -0,0 +1,6 @@
1
+ ---
2
+ # Only the main Sass file needs front matter (the dashes are enough)
3
+ ---
4
+
5
+ @import "gits";
6
+ @import "base";
@@ -0,0 +1,6 @@
1
+ ---
2
+ # Only the main Sass file needs front matter (the dashes are enough)
3
+ ---
4
+
5
+ @import "leaves";
6
+ @import "base";
@@ -0,0 +1,6 @@
1
+ ---
2
+ # Only the main Sass file needs front matter (the dashes are enough)
3
+ ---
4
+
5
+ @import "neon";
6
+ @import "base";
data/assets/main.scss CHANGED
@@ -3,6 +3,12 @@
3
3
  ---
4
4
 
5
5
  @import "base";
6
+ @import "hacker";
7
+ @import "leaves";
8
+ @import "neon";
9
+ @import "d1";
10
+ @import "gits";
11
+ @import "dune";
6
12
 
7
13
  @media (prefers-color-scheme: hacker) {
8
14
  @import "hacker";
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: letitbex-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.7.1
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: 2022-01-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -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
@@ -85,12 +84,21 @@ files:
85
84
  - _layouts/home.html
86
85
  - _layouts/page.html
87
86
  - _layouts/post.html
87
+ - _sass/_d1.scss
88
+ - _sass/_dune.scss
89
+ - _sass/_gits.scss
88
90
  - _sass/_hacker.scss
91
+ - _sass/_leaves.scss
92
+ - _sass/_neon.scss
89
93
  - _sass/base.scss
90
- - assets/logo.png
94
+ - assets/main-d1.scss
95
+ - assets/main-dune.scss
96
+ - assets/main-gits.scss
91
97
  - assets/main-hacker.scss
98
+ - assets/main-leaves.scss
99
+ - assets/main-neon.scss
92
100
  - assets/main.scss
93
- homepage: https://gitlbab.com/mrtsukim0t0-/letitbex-theme.git
101
+ homepage: https://gitlab.com/mrtsukim0t0-/letitbex-theme.git
94
102
  licenses:
95
103
  - MIT
96
104
  metadata: {}
@@ -109,8 +117,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
109
117
  - !ruby/object:Gem::Version
110
118
  version: '0'
111
119
  requirements: []
112
- rubyforge_project:
113
- rubygems_version: 2.7.6.2
120
+ rubygems_version: 3.2.5
114
121
  signing_key:
115
122
  specification_version: 4
116
123
  summary: Personalised copy of jekyll-theme-console
Binary file
data/assets/logo.png DELETED
Binary file