minimal-categorized 0.0.11 → 0.0.12
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/README.md +1 -1
- data/_sass/styles/_cookies.scss +9 -4
- data/_sass/variables/_colors.scss +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c92466dafcf4c200ddcfd91ce2f2ad8205259d20373c3bdcc02f2731bca4b254
|
4
|
+
data.tar.gz: f8333e47fbd197b637006c8c410fe0a93a796b6d3ea0d507b5c8bd1fb2447cae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1a06a339da722ff87ddbdf43e7541190e70c0afafdc48f1313394ea813a5fe3acd8a842533df7086bb1bd98d5cfa345f9845091f0f4485c688748df557fb841b
|
7
|
+
data.tar.gz: 8e3812adf408c92c8ba2382504be75b7b8bd5993c954e7579ff0e7f10729509b330ace8395e270969824c221ad995c65cc078be29950610769bfe9c6f987e2ed
|
data/README.md
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
[](https://raw.githubusercontent.com/mmistakes/minimal-mistakes/master/LICENSE)
|
4
4
|
[](https://jekyllrb.com/)
|
5
|
-
[](https://badge.fury.io/rb/minimal-categorized)
|
6
6
|
|
7
7
|
minimal-categorized is a flexible Jekyll theme, designed for sites with content easily aggregated into categories. Demo is available [here](https://itsmeaga1n.github.io/minimal-categorized/).
|
8
8
|
|
data/_sass/styles/_cookies.scss
CHANGED
@@ -26,14 +26,19 @@
|
|
26
26
|
button {
|
27
27
|
line-height: 1.4;
|
28
28
|
font-weight: 700;
|
29
|
-
font-family: Titillium Web,sans-serif;
|
30
29
|
display: inline-block;
|
31
30
|
padding: 10px 20px;
|
32
|
-
background: $
|
33
|
-
color: $
|
34
|
-
border:
|
31
|
+
background: $p_light;
|
32
|
+
color: $p_text;
|
33
|
+
border: none;
|
35
34
|
border-radius: 3px;
|
36
35
|
text-decoration: none;
|
36
|
+
cursor: pointer;
|
37
|
+
-webkit-transition: background 200ms;
|
38
|
+
transition: background 200ms;
|
39
|
+
&:hover {
|
40
|
+
background: $p_lighter_less;
|
41
|
+
}
|
37
42
|
}
|
38
43
|
@include mobile {
|
39
44
|
bottom: 0;
|