minimal-categorized 0.0.14 → 0.0.15
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/_sass/styles/_defaults.scss +3 -1
- data/_sass/styles/_home.scss +6 -6
- data/_sass/styles/_post.scss +1 -10
- data/_sass/variables/_mixins.scss +13 -0
- data/assets/styles/highlight.css +68 -0
- data/assets/styles/styles.scss +2 -1
- data/pages/category-1.html +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e6502026a79ea5121f0509b0e4a8827216fcb67cc649ab4535d3e6d0efa47806
|
4
|
+
data.tar.gz: f191548fd794fa7e02b19ee089b98ffae4966e6acb701b449c139c25175bb710
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c057ba19e233ba9095d998e3108e0138a012d01a69ce34ec6af5d36ade8a739bd2d5807142a3b65c1be3a28c049ff56264202457e66f8f956e0d25f05d6f0c08
|
7
|
+
data.tar.gz: c73a249740c57abd2112ac60037b66aaed2fde4d2df8bd7bc0401b7a97594913a4285b80e45a06b19c07eaf32690a7d9b0f9935f73d7b18d866e13e2fb632fb3
|
data/_sass/styles/_defaults.scss
CHANGED
data/_sass/styles/_home.scss
CHANGED
@@ -63,7 +63,7 @@ $image-dim: 192px;
|
|
63
63
|
&_image {
|
64
64
|
justify-content: center !important;
|
65
65
|
display: flex;
|
66
|
-
height: $image-dim *
|
66
|
+
height: $image-dim * 1.4;
|
67
67
|
align-items: center;
|
68
68
|
@include mobile {
|
69
69
|
height: $image-dim * 1.1;
|
@@ -77,8 +77,8 @@ $image-dim: 192px;
|
|
77
77
|
overflow: hidden;
|
78
78
|
transition: .5s ease;
|
79
79
|
&:hover {
|
80
|
-
height: $image-dim * 1.
|
81
|
-
width: $image-dim * 1.
|
80
|
+
height: $image-dim * 1.2;
|
81
|
+
width: $image-dim * 1.2;
|
82
82
|
}
|
83
83
|
}
|
84
84
|
img {
|
@@ -86,10 +86,10 @@ $image-dim: 192px;
|
|
86
86
|
width: $image-dim;
|
87
87
|
object-fit: cover;
|
88
88
|
transition: .5s ease;
|
89
|
-
opacity: 0.
|
89
|
+
opacity: 0.85;
|
90
90
|
&:hover {
|
91
|
-
height: $image-dim * 1.
|
92
|
-
width: $image-dim * 1.
|
91
|
+
height: $image-dim * 1.2;
|
92
|
+
width: $image-dim * 1.2;
|
93
93
|
}
|
94
94
|
}
|
95
95
|
}
|
data/_sass/styles/_post.scss
CHANGED
@@ -1,16 +1,7 @@
|
|
1
1
|
.post {
|
2
2
|
font-size: 1.2em;
|
3
3
|
color: black;
|
4
|
-
|
5
|
-
transition: all 300ms ease 0s;
|
6
|
-
cursor: pointer;
|
7
|
-
text-decoration-line: none;
|
8
|
-
text-decoration: underline $primary;
|
9
|
-
&:hover {
|
10
|
-
color: $primary;
|
11
|
-
font-weight: 500;
|
12
|
-
}
|
13
|
-
}
|
4
|
+
@include hyperlink-convention();
|
14
5
|
.language-plaintext, .language-shell, .language-html {
|
15
6
|
border-radius: 3px;
|
16
7
|
padding: 1px 3px;
|
@@ -31,4 +31,17 @@
|
|
31
31
|
border-color: #555 transparent transparent transparent;
|
32
32
|
}
|
33
33
|
}
|
34
|
+
}
|
35
|
+
|
36
|
+
@mixin hyperlink-convention {
|
37
|
+
a {
|
38
|
+
transition: all 300ms ease 0s;
|
39
|
+
cursor: pointer;
|
40
|
+
text-decoration-line: none;
|
41
|
+
text-decoration: underline $primary;
|
42
|
+
&:hover {
|
43
|
+
color: $primary;
|
44
|
+
font-weight: 500;
|
45
|
+
}
|
46
|
+
}
|
34
47
|
}
|
@@ -0,0 +1,68 @@
|
|
1
|
+
.highlight pre { background-color: #272822; }
|
2
|
+
.highlight .hll { background-color: #272822; }
|
3
|
+
.highlight .c { color: #75715e } /* Comment */
|
4
|
+
.highlight .err { color: #960050; background-color: #1e0010 } /* Error */
|
5
|
+
.highlight .k { color: #66d9ef } /* Keyword */
|
6
|
+
.highlight .l { color: #ae81ff } /* Literal */
|
7
|
+
.highlight .n { color: #f8f8f2 } /* Name */
|
8
|
+
.highlight .o { color: #f92672 } /* Operator */
|
9
|
+
.highlight .p { color: #f8f8f2 } /* Punctuation */
|
10
|
+
.highlight .cm { color: #75715e } /* Comment.Multiline */
|
11
|
+
.highlight .cp { color: #75715e } /* Comment.Preproc */
|
12
|
+
.highlight .c1 { color: #75715e } /* Comment.Single */
|
13
|
+
.highlight .cs { color: #75715e } /* Comment.Special */
|
14
|
+
.highlight .ge { font-style: italic } /* Generic.Emph */
|
15
|
+
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
16
|
+
.highlight .kc { color: #66d9ef } /* Keyword.Constant */
|
17
|
+
.highlight .kd { color: #66d9ef } /* Keyword.Declaration */
|
18
|
+
.highlight .kn { color: #f92672 } /* Keyword.Namespace */
|
19
|
+
.highlight .kp { color: #66d9ef } /* Keyword.Pseudo */
|
20
|
+
.highlight .kr { color: #66d9ef } /* Keyword.Reserved */
|
21
|
+
.highlight .kt { color: #66d9ef } /* Keyword.Type */
|
22
|
+
.highlight .ld { color: #e6db74 } /* Literal.Date */
|
23
|
+
.highlight .m { color: #ae81ff } /* Literal.Number */
|
24
|
+
.highlight .s { color: #e6db74 } /* Literal.String */
|
25
|
+
.highlight .na { color: #a6e22e } /* Name.Attribute */
|
26
|
+
.highlight .nb { color: #f8f8f2 } /* Name.Builtin */
|
27
|
+
.highlight .nc { color: #a6e22e } /* Name.Class */
|
28
|
+
.highlight .no { color: #66d9ef } /* Name.Constant */
|
29
|
+
.highlight .nd { color: #a6e22e } /* Name.Decorator */
|
30
|
+
.highlight .ni { color: #f8f8f2 } /* Name.Entity */
|
31
|
+
.highlight .ne { color: #a6e22e } /* Name.Exception */
|
32
|
+
.highlight .nf { color: #a6e22e } /* Name.Function */
|
33
|
+
.highlight .nl { color: #f8f8f2 } /* Name.Label */
|
34
|
+
.highlight .nn { color: #f8f8f2 } /* Name.Namespace */
|
35
|
+
.highlight .nx { color: #a6e22e } /* Name.Other */
|
36
|
+
.highlight .py { color: #f8f8f2 } /* Name.Property */
|
37
|
+
.highlight .nt { color: #f92672 } /* Name.Tag */
|
38
|
+
.highlight .nv { color: #f8f8f2 } /* Name.Variable */
|
39
|
+
.highlight .ow { color: #f92672 } /* Operator.Word */
|
40
|
+
.highlight .w { color: #f8f8f2 } /* Text.Whitespace */
|
41
|
+
.highlight .mf { color: #ae81ff } /* Literal.Number.Float */
|
42
|
+
.highlight .mh { color: #ae81ff } /* Literal.Number.Hex */
|
43
|
+
.highlight .mi { color: #ae81ff } /* Literal.Number.Integer */
|
44
|
+
.highlight .mo { color: #ae81ff } /* Literal.Number.Oct */
|
45
|
+
.highlight .sb { color: #e6db74 } /* Literal.String.Backtick */
|
46
|
+
.highlight .sc { color: #e6db74 } /* Literal.String.Char */
|
47
|
+
.highlight .sd { color: #e6db74 } /* Literal.String.Doc */
|
48
|
+
.highlight .s2 { color: #e6db74 } /* Literal.String.Double */
|
49
|
+
.highlight .se { color: #ae81ff } /* Literal.String.Escape */
|
50
|
+
.highlight .sh { color: #e6db74 } /* Literal.String.Heredoc */
|
51
|
+
.highlight .si { color: #e6db74 } /* Literal.String.Interpol */
|
52
|
+
.highlight .sx { color: #e6db74 } /* Literal.String.Other */
|
53
|
+
.highlight .sr { color: #e6db74 } /* Literal.String.Regex */
|
54
|
+
.highlight .s1 { color: #e26647 } /* Literal.String.Single */
|
55
|
+
.highlight .ss { color: #e6db74 } /* Literal.String.Symbol */
|
56
|
+
.highlight .bp { color: #f8f8f2 } /* Name.Builtin.Pseudo */
|
57
|
+
.highlight .vc { color: #f8f8f2 } /* Name.Variable.Class */
|
58
|
+
.highlight .vg { color: #f8f8f2 } /* Name.Variable.Global */
|
59
|
+
.highlight .vi { color: #f8f8f2 } /* Name.Variable.Instance */
|
60
|
+
.highlight .il { color: #ae81ff } /* Literal.Number.Integer.Long */
|
61
|
+
|
62
|
+
.highlight .gh { } /* Generic Heading & Diff Header */
|
63
|
+
.highlight .gu { color: #75715e; } /* Generic.Subheading & Diff Unified/Comment? */
|
64
|
+
.highlight .gd { color: #f92672; } /* Generic.Deleted & Diff Deleted */
|
65
|
+
.highlight .gi { color: #a6e22e; } /* Generic.Inserted & Diff Inserted */
|
66
|
+
|
67
|
+
.highlight .dl {color: #e26647}
|
68
|
+
.highlight .lineno { color: rgb(173, 173, 173); margin-right: 5px; }
|
data/assets/styles/styles.scss
CHANGED
data/pages/category-1.html
CHANGED
@@ -3,7 +3,7 @@ title: Category 1
|
|
3
3
|
layout: category-aggregator
|
4
4
|
permalink: category-1.html
|
5
5
|
category: category-1
|
6
|
-
summary: Summary of a category. It is just a special placeholder wrapped in a particular class, so it looks more interesting. You can always make your own layout for a category, or make a category.html look the way you want.
|
6
|
+
summary: Summary of a category. It is just a special placeholder wrapped in a particular class, so it looks more interesting. You can always make your own layout for a category, or make a category.html look the way you want. If you want to see the source code of this theme, feel free to check out the repository on <a href="https://github.com/ItsMeaga1n/minimal-categorized" target="_blank">GitHub</a>.
|
7
7
|
---
|
8
8
|
<hr>
|
9
9
|
<h2>Showcase of customizing aggregator site</h2>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: minimal-categorized
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.15
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Patryk Bieszke
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-11-
|
11
|
+
date: 2020-11-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -77,6 +77,7 @@ files:
|
|
77
77
|
- assets/img/project-2.svg
|
78
78
|
- assets/img/project-3.svg
|
79
79
|
- assets/img/project-4.png
|
80
|
+
- assets/styles/highlight.css
|
80
81
|
- assets/styles/styles.scss
|
81
82
|
- pages/about.html
|
82
83
|
- pages/category-1.html
|