no-style-please2 0.7.3 → 0.7.4.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_config.yml +1 -0
- data/_includes/head.html +5 -3
- data/_includes/main.css +13 -9
- data/_layouts/tagpage.html +1 -5
- data/_sass/no-style-please.scss +3 -4
- 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: dc086280d17d876ce8898938d5740d8a8dacb87f9582c30c7d82ac75f03dc69a
|
4
|
+
data.tar.gz: 38f49a26b8ae571b9379a577acb84965a908ef9998e1063063c8424968dceff4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: df6f006716a09299efd50f519fc747636abf08dcdfe04c192002961e6bdf12010081ded0a1c28a0b2269d4f17ab558ec7d6c66fc4c8c12994bfd5681777f9932
|
7
|
+
data.tar.gz: 4c74694608603ad34fd8e952e47cbc2603bd15a58132812709bb6cc3ce3e641f8c71b2b13846c828f51ccfc87b5eee9839edfddf7b4c1d2327a944edba9b7888
|
data/_config.yml
CHANGED
data/_includes/head.html
CHANGED
@@ -23,11 +23,13 @@
|
|
23
23
|
{% endif %}
|
24
24
|
|
25
25
|
<link rel="shortcut icon" type="image/x-icon" href="{{ site.favicon | relative_url }}" />
|
26
|
-
{%
|
27
|
-
<!-- <link rel="stylesheet" href="{{ "/assets/css/main.css" | relative_url }}" /> -->
|
28
|
-
{% endcomment %}
|
26
|
+
{% if site.theme_config.combine_css_html %}
|
29
27
|
<style>
|
30
28
|
{%- include main.css -%}
|
31
29
|
</style>
|
30
|
+
{% else %}
|
31
|
+
<link rel="stylesheet" href="{{ "/assets/css/main.css" | relative_url }}" />
|
32
|
+
{% endif %}
|
33
|
+
|
32
34
|
|
33
35
|
</head>
|
data/_includes/main.css
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
body[a="dark"] {
|
2
2
|
filter: invert(1); }
|
3
3
|
body[a="dark"] img {
|
4
4
|
filter: invert(1); }
|
@@ -21,7 +21,7 @@ html {
|
|
21
21
|
|
22
22
|
body {
|
23
23
|
color: black;
|
24
|
-
font-family:
|
24
|
+
font-family: 'Times New Roman', Times, serif;
|
25
25
|
font-size: 16px;
|
26
26
|
line-height: 1.4;
|
27
27
|
margin: 0;
|
@@ -39,9 +39,9 @@ hr {
|
|
39
39
|
|
40
40
|
p {
|
41
41
|
margin: 1rem 0; }
|
42
|
-
|
43
|
-
|
44
|
-
margin: 0.4rem 0; }
|
42
|
+
|
43
|
+
li {
|
44
|
+
margin: 0.4rem 0; }
|
45
45
|
|
46
46
|
*:target {
|
47
47
|
background: yellow; }
|
@@ -53,14 +53,18 @@ p {
|
|
53
53
|
|
54
54
|
hr {
|
55
55
|
text-align: center;
|
56
|
-
border: 0;
|
56
|
+
border: 0;
|
57
|
+
font-family: serif;
|
58
|
+
}
|
57
59
|
hr:before {
|
58
|
-
content: '/////';
|
60
|
+
content: '/////';
|
61
|
+
font-family: monospace; }
|
59
62
|
hr:after {
|
60
|
-
content: attr(data-content) "/////";
|
63
|
+
content: attr(data-content) "/////";
|
64
|
+
font-family: monospace; }
|
61
65
|
|
62
66
|
table {
|
63
|
-
width: 100%; }
|
67
|
+
width: 100%; }
|
64
68
|
|
65
69
|
table, th, td {
|
66
70
|
border: thin solid black;
|
data/_layouts/tagpage.html
CHANGED
@@ -13,13 +13,9 @@ layout: default
|
|
13
13
|
{% endfor %}
|
14
14
|
|
15
15
|
{% if site.theme_config.tag_showall %}
|
16
|
-
<li><a href="{{ site.baseurl }}/{{site.theme_config.all_tags_path | default:'tags' }}
|
16
|
+
<li><a href="{{ site.baseurl }}/{{site.theme_config.all_tags_path | default:'tags' }}"> {{site.theme_config.all_tags_title | default:'All Tags' }}</a>
|
17
17
|
</li>
|
18
18
|
{% endif %}
|
19
19
|
</ul>
|
20
|
-
|
21
|
-
<hr>
|
22
|
-
|
23
|
-
|
24
20
|
</ariticle>
|
25
21
|
|
data/_sass/no-style-please.scss
CHANGED
@@ -25,7 +25,7 @@ html { height: 100%; }
|
|
25
25
|
|
26
26
|
body {
|
27
27
|
color: black;
|
28
|
-
font-family:
|
28
|
+
font-family:'Times New Roman', Times, serif;
|
29
29
|
font-size: 16px;
|
30
30
|
line-height: 1.4;
|
31
31
|
margin: 0;
|
@@ -54,9 +54,8 @@ li { margin: 0.4rem 0; }
|
|
54
54
|
hr {
|
55
55
|
text-align: center;
|
56
56
|
border: 0;
|
57
|
-
|
58
|
-
&:
|
59
|
-
&:after { content: attr(data-content) '/////' }
|
57
|
+
&:before { content: '/////' ;font-family: monospace;}
|
58
|
+
&:after { content: attr(data-content) '/////';font-family: monospace; }
|
60
59
|
}
|
61
60
|
|
62
61
|
table { width: 100%; }
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: no-style-please2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.4.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- vitock
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-05-
|
11
|
+
date: 2022-05-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|