fossbook 0.1.2 → 0.1.4
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.
package/package.json
CHANGED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
Naver Font Copyright and License Notice
|
|
2
|
+
|
|
3
|
+
The intellectual property rights for the Nanum fonts, Maru Buri fonts, and
|
|
4
|
+
Clova Nanum Handwriting fonts (collectively, "Naver Fonts") belong to Naver
|
|
5
|
+
and the Naver Cultural Foundation.
|
|
6
|
+
|
|
7
|
+
Naver Fonts are provided free of charge to all users, including individuals
|
|
8
|
+
and companies. Commercial use is permitted except for selling the font files
|
|
9
|
+
themselves.
|
|
10
|
+
|
|
11
|
+
Naver Fonts may be bundled with, redistributed with, or sold with other
|
|
12
|
+
software when this copyright notice and the full license are included. The
|
|
13
|
+
fonts may also be freely modified and redistributed.
|
|
14
|
+
|
|
15
|
+
If including the full Naver Font License is difficult, source attribution is
|
|
16
|
+
recommended. This package includes fonts provided by Naver.
|
|
17
|
+
|
|
18
|
+
The Maru Buri fonts and Clova Nanum Handwriting fonts use the same open license
|
|
19
|
+
and copyright terms as the Nanum fonts.
|
|
20
|
+
|
|
21
|
+
Official notice and license:
|
|
22
|
+
https://hangeul.naver.com/font
|
|
23
|
+
https://help.naver.com/support/contents/contents.help?serviceNo=1074&categoryNo=3497
|
|
24
|
+
|
|
25
|
+
Bundled font files:
|
|
26
|
+
- NanumSquareNeoTTF-bRg.woff (Nanum Square Neo)
|
|
27
|
+
- NanumHimNaeRaNeunMarBoDan.woff (Clova Nanum Handwriting)
|
|
Binary file
|
|
Binary file
|
|
@@ -1,5 +1,18 @@
|
|
|
1
|
-
@
|
|
2
|
-
|
|
1
|
+
@font-face {
|
|
2
|
+
font-display: swap;
|
|
3
|
+
font-family: 'NanumSquareNeo';
|
|
4
|
+
font-style: normal;
|
|
5
|
+
font-weight: 400;
|
|
6
|
+
src: url('../fonts/NanumSquareNeoTTF-bRg.woff') format('woff');
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
@font-face {
|
|
10
|
+
font-display: swap;
|
|
11
|
+
font-family: 'NanumHimNaeRaNeunMarBoDan';
|
|
12
|
+
font-style: normal;
|
|
13
|
+
font-weight: 400;
|
|
14
|
+
src: url('../fonts/NanumHimNaeRaNeunMarBoDan.woff') format('woff');
|
|
15
|
+
}
|
|
3
16
|
|
|
4
17
|
/* Markdown */
|
|
5
18
|
:root{
|
|
@@ -230,11 +243,13 @@
|
|
|
230
243
|
/* Code blocks */
|
|
231
244
|
code {
|
|
232
245
|
background-color: #f1f1f1;
|
|
246
|
+
font-family: 'Roboto Mono', monospace;
|
|
233
247
|
padding: .1em .2em;
|
|
234
248
|
}
|
|
235
249
|
|
|
236
250
|
pre {
|
|
237
251
|
background-color: #f6f8fa;
|
|
252
|
+
font-family: 'Roboto Mono', monospace;
|
|
238
253
|
line-height: 1.4;
|
|
239
254
|
overflow-x: auto;
|
|
240
255
|
padding: 0;
|
|
@@ -265,6 +280,7 @@
|
|
|
265
280
|
/* Header */
|
|
266
281
|
header {
|
|
267
282
|
display: flex;
|
|
283
|
+
font-family: 'Roboto Mono', monospace;
|
|
268
284
|
flex-wrap: wrap;
|
|
269
285
|
justify-content: space-between;
|
|
270
286
|
margin: 1em 0;
|
|
@@ -312,6 +328,9 @@
|
|
|
312
328
|
h1.assistive-text {
|
|
313
329
|
display: none;
|
|
314
330
|
}
|
|
331
|
+
nav {
|
|
332
|
+
font-family: 'Roboto Mono', monospace;
|
|
333
|
+
}
|
|
315
334
|
nav.post-navigation {
|
|
316
335
|
display: flex;
|
|
317
336
|
justify-content: end;
|
|
@@ -325,6 +344,7 @@
|
|
|
325
344
|
display: flex;
|
|
326
345
|
align-items: center;
|
|
327
346
|
border-top: 0.4rem dotted var(--bordercl);
|
|
347
|
+
font-family: 'Roboto Mono', monospace;
|
|
328
348
|
padding: 2rem 0rem;
|
|
329
349
|
margin-top: 2rem;
|
|
330
350
|
}
|