jekyll-theme-paperwiki 0.1.10 → 0.1.11
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/_data/navigation.yml +0 -2
- data/_includes/global_head.html +1 -1
- data/_sass/partials/_base.scss +116 -66
- data/_sass/partials/_collections.scss +2 -0
- data/_sass/partials/_entries.scss +8 -12
- data/_sass/variables/_misc.scss +1 -1
- data/assets/css/{style.scss → css.scss} +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b6b8c1a35a1db8ab5ee4b1406b062c44431f3492a62b007a1119ad71fe4ce8d2
|
4
|
+
data.tar.gz: 21169425e2b81d09c43b1d7e9a5689a9c2486d538cd2a92c5ec6fbec4604a17f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0040b54aa1afc9a0290028dc9c2cfb8a802b428f5310327ef63fa2e34ad9a616ded216630968b528d09a27fa8eb645447ddec34b8716de243a2a5fb8a82f34d2
|
7
|
+
data.tar.gz: 1224d680dada592058ed40e391b9a93a20e91e92b7fd2310624f61879ad5d2867de5ecf74782fbf53bd13f2b0e1b3519efae7ef369dbd4a1b41a4b72bf9a69d8
|
data/_data/navigation.yml
CHANGED
data/_includes/global_head.html
CHANGED
@@ -12,7 +12,7 @@
|
|
12
12
|
|
13
13
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
14
14
|
|
15
|
-
<link rel="stylesheet" href="/assets/css/
|
15
|
+
<link rel="stylesheet" href="/assets/css/css.css">
|
16
16
|
<link rel="stylesheet" href="/assets/fonts/RemixIcon/remixicon.css">
|
17
17
|
|
18
18
|
<link rel="icon" type="image/png" sizes="512x512" href="/assets/images/favicon.png">
|
data/_sass/partials/_base.scss
CHANGED
@@ -39,6 +39,8 @@ main {
|
|
39
39
|
background-color: $color-content_background;
|
40
40
|
}
|
41
41
|
|
42
|
+
|
43
|
+
|
42
44
|
h1,
|
43
45
|
h2,
|
44
46
|
h3 {
|
@@ -82,21 +84,120 @@ p {
|
|
82
84
|
margin-bottom: 1.75em; // Equal to one line-height.
|
83
85
|
}
|
84
86
|
|
85
|
-
|
86
|
-
|
87
|
+
sup,
|
88
|
+
sub {
|
89
|
+
font-size: $fontsize-small;
|
90
|
+
line-height: 0;
|
91
|
+
}
|
87
92
|
|
88
|
-
|
89
|
-
|
93
|
+
abbr {
|
94
|
+
cursor: help;
|
90
95
|
}
|
91
96
|
|
92
97
|
img {
|
93
98
|
border: 0;
|
94
99
|
}
|
95
100
|
|
101
|
+
figcaption {
|
102
|
+
font-size: $fontsize-small;
|
103
|
+
text-align: center;
|
104
|
+
}
|
105
|
+
|
106
|
+
dl,
|
107
|
+
ol,
|
108
|
+
ul {
|
109
|
+
margin-bottom: 1.75em;
|
110
|
+
}
|
111
|
+
|
112
|
+
ol li,
|
113
|
+
ul li {
|
114
|
+
// padding-left: 1em;
|
115
|
+
}
|
116
|
+
|
117
|
+
ul ul {
|
118
|
+
// padding-left: -2em;
|
119
|
+
margin-left: 2em;
|
120
|
+
margin-bottom: 0;
|
121
|
+
}
|
122
|
+
|
123
|
+
ol,
|
124
|
+
ul {
|
125
|
+
margin-left: 3em;
|
126
|
+
margin-right: 3em;
|
127
|
+
}
|
128
|
+
|
129
|
+
dl {
|
130
|
+
margin-left: 2em;
|
131
|
+
margin-right: 3em;
|
132
|
+
}
|
133
|
+
|
134
|
+
dt {
|
135
|
+
font-weight: bold;
|
136
|
+
}
|
137
|
+
|
138
|
+
dd {
|
139
|
+
margin-left: 1em;
|
140
|
+
}
|
141
|
+
|
142
|
+
|
143
|
+
|
144
|
+
table {
|
145
|
+
margin: auto;
|
146
|
+
margin-bottom: 1.75em;
|
147
|
+
border-collapse: collapse;
|
148
|
+
border-bottom: 0;
|
149
|
+
}
|
150
|
+
|
151
|
+
tr:nth-child(even) {
|
152
|
+
background-color: $color-paper_dark;
|
153
|
+
}
|
154
|
+
|
155
|
+
th:first-child,
|
156
|
+
td:first-child {
|
157
|
+
border-left: 0;
|
158
|
+
}
|
159
|
+
|
160
|
+
th:last-child,
|
161
|
+
td:last-child {
|
162
|
+
border-right: 0;
|
163
|
+
}
|
164
|
+
|
165
|
+
th,
|
166
|
+
td {
|
167
|
+
border: 1px solid $color-shortbread_dark;
|
168
|
+
padding: 0.5em;
|
169
|
+
}
|
170
|
+
|
171
|
+
th {
|
172
|
+
border-top: 0;
|
173
|
+
background-color: $color-shortbread_dark;
|
174
|
+
text-align: center;
|
175
|
+
}
|
176
|
+
td {
|
177
|
+
border-bottom: 0;
|
178
|
+
}
|
179
|
+
|
180
|
+
caption {
|
181
|
+
caption-side: bottom;
|
182
|
+
font-size: $fontsize-small;
|
183
|
+
padding-top: 1em;
|
184
|
+
}
|
185
|
+
|
186
|
+
|
187
|
+
|
188
|
+
|
189
|
+
|
190
|
+
hr {
|
191
|
+
margin: 2*1.75em 6em 2*1.68em;
|
192
|
+
|
193
|
+
border-style: solid;
|
194
|
+
border-color: $color-hr;
|
195
|
+
}
|
196
|
+
|
96
197
|
blockquote {
|
97
198
|
margin-left: 3em;
|
98
199
|
margin-right: 3em;
|
99
|
-
margin-bottom: 1.
|
200
|
+
margin-bottom: 1.75em;
|
100
201
|
padding: 1.75em;
|
101
202
|
|
102
203
|
background-color: $color-blockquote_background;
|
@@ -115,21 +216,6 @@ ul ul {
|
|
115
216
|
list-style-type: circle;
|
116
217
|
}
|
117
218
|
|
118
|
-
sup,
|
119
|
-
sub {
|
120
|
-
font-size: $fontsize-small;
|
121
|
-
line-height: 0;
|
122
|
-
}
|
123
|
-
|
124
|
-
figcaption {
|
125
|
-
font-size: $fontsize-small;
|
126
|
-
text-align: center;
|
127
|
-
}
|
128
|
-
|
129
|
-
abbr {
|
130
|
-
cursor: help;
|
131
|
-
}
|
132
|
-
|
133
219
|
code,
|
134
220
|
pre,
|
135
221
|
kbd,
|
@@ -149,8 +235,8 @@ kbd {
|
|
149
235
|
position: relative;
|
150
236
|
top: -1px;
|
151
237
|
display: inline-block;
|
152
|
-
min-width: 0.
|
153
|
-
padding: 0.
|
238
|
+
min-width: 0.75em;
|
239
|
+
padding: 0.2em 0.5em;
|
154
240
|
line-height: 1;
|
155
241
|
|
156
242
|
background-color: $color-kbd_background;
|
@@ -172,13 +258,20 @@ kbd {
|
|
172
258
|
}
|
173
259
|
|
174
260
|
pre {
|
175
|
-
padding:
|
261
|
+
padding: 1em;
|
262
|
+
margin-bottom: 1.75em;
|
263
|
+
white-space: pre-wrap;
|
176
264
|
|
177
265
|
background-color: $color-code_background;
|
178
266
|
color: $color-code_text;
|
179
267
|
border-radius: 6px;
|
268
|
+
code {
|
269
|
+
padding: 0;
|
270
|
+
}
|
180
271
|
}
|
181
272
|
|
273
|
+
|
274
|
+
|
182
275
|
input[type="search"] {
|
183
276
|
background-color: $color-searchbar_background;
|
184
277
|
border: 1px solid $color-searchbar_border;
|
@@ -198,46 +291,3 @@ input[type="search"] {
|
|
198
291
|
transition: $transition;
|
199
292
|
}
|
200
293
|
}
|
201
|
-
|
202
|
-
.tooltip {
|
203
|
-
position: relative;
|
204
|
-
}
|
205
|
-
|
206
|
-
.tooltip:before {
|
207
|
-
content: attr(data-tooltip);
|
208
|
-
position: absolute;
|
209
|
-
width: 100px;
|
210
|
-
background-color: #062B45;
|
211
|
-
color: #fff;
|
212
|
-
text-align: center;
|
213
|
-
padding: 10px;
|
214
|
-
line-height: 1.2;
|
215
|
-
border-radius: 6px;
|
216
|
-
z-index: 1;
|
217
|
-
opacity: 0;
|
218
|
-
transition: opacity .6s;
|
219
|
-
bottom: 125%;
|
220
|
-
left: 50%;
|
221
|
-
margin-left: -60px;
|
222
|
-
font-size: 0.75em;
|
223
|
-
visibility: hidden;
|
224
|
-
}
|
225
|
-
|
226
|
-
.tooltip:after {
|
227
|
-
content: "";
|
228
|
-
position: absolute;
|
229
|
-
bottom: 75%;
|
230
|
-
left: 50%;
|
231
|
-
margin-left: -5px;
|
232
|
-
border-width: 5px;
|
233
|
-
border-style: solid;
|
234
|
-
opacity: 0;
|
235
|
-
transition: opacity .6s;
|
236
|
-
border-color: #062B45 transparent transparent transparent;
|
237
|
-
visibility: hidden;
|
238
|
-
}
|
239
|
-
|
240
|
-
.tooltip:hover:before, .tooltip:hover:after {
|
241
|
-
opacity: 1;
|
242
|
-
visibility: visible;
|
243
|
-
}
|
@@ -10,14 +10,6 @@
|
|
10
10
|
|
11
11
|
border-left: 1px solid $color-article_border;
|
12
12
|
border-right: 1px solid $color-article_border;
|
13
|
-
|
14
|
-
ul {
|
15
|
-
margin: 0 2rem 1.75rem;
|
16
|
-
ul {
|
17
|
-
margin-bottom: 0;
|
18
|
-
margin-right: 0;
|
19
|
-
}
|
20
|
-
}
|
21
13
|
}
|
22
14
|
|
23
15
|
.entry-wiki {
|
@@ -52,19 +44,21 @@
|
|
52
44
|
|
53
45
|
.entry-index ul {
|
54
46
|
list-style: none;
|
55
|
-
padding-left: 1rem;
|
56
47
|
a {
|
57
48
|
text-decoration: none;
|
58
49
|
}
|
59
50
|
}
|
60
51
|
|
61
52
|
.entry-index_return {
|
62
|
-
margin-bottom: 1.
|
53
|
+
margin-bottom: 1.5em;
|
54
|
+
margin-left: 1em;
|
63
55
|
}
|
64
56
|
|
65
57
|
.entry-index ol {
|
66
58
|
list-style: none;
|
67
59
|
padding-left: 1rem;
|
60
|
+
margin-left: 0;
|
61
|
+
margin-right: 0;
|
68
62
|
/* This is an arbitrary name as the value. */
|
69
63
|
counter-reset: counter-index;
|
70
64
|
}
|
@@ -89,7 +83,7 @@
|
|
89
83
|
}
|
90
84
|
|
91
85
|
.entry-other_projects {
|
92
|
-
padding:
|
86
|
+
padding: 1em;
|
93
87
|
margin: 1em;
|
94
88
|
border-radius: 1em;
|
95
89
|
background-color: $color-entry_secondary;
|
@@ -116,10 +110,12 @@
|
|
116
110
|
.stats-table {
|
117
111
|
border-collapse: separate;
|
118
112
|
border-spacing: 3px;
|
119
|
-
border:
|
113
|
+
border: 0;
|
120
114
|
width: 100%;
|
115
|
+
margin-bottom: 0;
|
121
116
|
td {
|
122
117
|
padding: 0.5em;
|
118
|
+
border: 0;
|
123
119
|
}
|
124
120
|
tr td:first-child {
|
125
121
|
text-align: right;
|
data/_sass/variables/_misc.scss
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-paperwiki
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.11
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- pomeloshark
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-01-
|
11
|
+
date: 2023-01-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -76,7 +76,7 @@ files:
|
|
76
76
|
- _sass/variables/_fonts.scss
|
77
77
|
- _sass/variables/_misc.scss
|
78
78
|
- assets/.DS_Store
|
79
|
-
- assets/css/
|
79
|
+
- assets/css/css.scss
|
80
80
|
- assets/fonts/Inter/.DS_Store
|
81
81
|
- assets/fonts/Inter/Inter-Bold.otf
|
82
82
|
- assets/fonts/Inter/Inter-Bold.woff
|
@@ -136,7 +136,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
136
136
|
- !ruby/object:Gem::Version
|
137
137
|
version: '0'
|
138
138
|
requirements: []
|
139
|
-
rubygems_version: 3.
|
139
|
+
rubygems_version: 3.2.15
|
140
140
|
signing_key:
|
141
141
|
specification_version: 4
|
142
142
|
summary: A theme meant for use as a personal wiki.
|