vowel 0.2.4 → 0.2.5

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.
Files changed (73) hide show
  1. package/404.md +3 -0
  2. package/README.md +134 -26
  3. package/bin.js +209 -1
  4. package/config.js +20 -0
  5. package/docs-source/.votive.db +0 -0
  6. package/docs-source/blog/url-ui.md +1 -5
  7. package/docs-source/blog.md +5 -0
  8. package/docs-source/docs/items.md +1 -1
  9. package/docs-source/home.md +1 -1
  10. package/docs-source/output/about.html +1 -0
  11. package/docs-source/output/blog/url-ui.html +8 -0
  12. package/docs-source/output/blog.html +1 -0
  13. package/docs-source/output/default.css +1 -0
  14. package/docs-source/output/docs/deploy.html +34 -0
  15. package/docs-source/output/docs/file-structure.html +24 -0
  16. package/docs-source/output/docs/folder-settings.html +20 -0
  17. package/docs-source/output/docs/images.html +2 -0
  18. package/docs-source/output/docs/items.html +6 -0
  19. package/docs-source/output/docs/pages.html +101 -0
  20. package/docs-source/output/docs/styling.html +18 -0
  21. package/docs-source/output/docs/taxonomies.html +20 -0
  22. package/docs-source/output/docs.html +28 -0
  23. package/docs-source/output/features/cards.html +1 -0
  24. package/docs-source/output/features/editing.html +1 -0
  25. package/docs-source/output/features/emoji.html +1 -0
  26. package/docs-source/output/features/frontmatter.html +1 -0
  27. package/docs-source/output/features/lists.html +1 -0
  28. package/docs-source/output/features/navigation.html +1 -0
  29. package/docs-source/output/features/rich-previews.html +1 -0
  30. package/docs-source/output/features/robots.html +1 -0
  31. package/docs-source/output/features/rss.html +1 -0
  32. package/docs-source/output/features/sitemap.html +1 -0
  33. package/docs-source/output/features/speed.html +1 -0
  34. package/docs-source/output/features/static.html +1 -0
  35. package/docs-source/output/features/taxonomies.html +1 -0
  36. package/docs-source/output/features.html +1 -0
  37. package/docs-source/output/feed.xml +1 -0
  38. package/docs-source/output/index.html +21 -0
  39. package/docs-source/output/reset.css +1 -0
  40. package/docs-source/output/roadmap.html +87 -0
  41. package/docs-source/output/robots.txt +14 -0
  42. package/docs-source/output/sitemap.xml +16 -0
  43. package/docs-source/output/typography.css +1 -0
  44. package/docs-source/settings.md +1 -0
  45. package/getMetadata.js +1 -1
  46. package/index.js +5 -660
  47. package/package.json +16 -1
  48. package/plugins/fonts/index.js +26 -0
  49. package/plugins/icons/index.js +26 -0
  50. package/plugins/images/index.js +45 -0
  51. package/plugins/markdown/index.js +1097 -0
  52. package/plugins/robots/index.js +23 -0
  53. package/plugins/styles/index.js +69 -0
  54. package/plugins/vectors/index.js +38 -0
  55. package/plugins/xml/index.js +196 -0
  56. package/stylesheets/DefaultStyles.css +329 -263
  57. package/stylesheets/ResetStyles.css +119 -123
  58. package/stylesheets/TypographyStyles.css +259 -242
  59. package/docs-source/assets/styles.css +0 -51
  60. package/docs-source/blog/home.md +0 -5
  61. /package/docs-source/{$features → features}/cards.md +0 -0
  62. /package/docs-source/{$features → features}/editing.md +0 -0
  63. /package/docs-source/{$features → features}/emoji.md +0 -0
  64. /package/docs-source/{$features → features}/frontmatter.md +0 -0
  65. /package/docs-source/{$features → features}/lists.md +0 -0
  66. /package/docs-source/{$features → features}/navigation.md +0 -0
  67. /package/docs-source/{$features → features}/rich-previews.md +0 -0
  68. /package/docs-source/{$features → features}/robots.md +0 -0
  69. /package/docs-source/{$features → features}/rss.md +0 -0
  70. /package/docs-source/{$features → features}/sitemap.md +0 -0
  71. /package/docs-source/{$features → features}/speed.md +0 -0
  72. /package/docs-source/{$features → features}/static.md +0 -0
  73. /package/docs-source/{$features → features}/taxonomies.md +0 -0
@@ -1,124 +1,120 @@
1
- html {
2
- -webkit-text-size-adjust: 100%;
3
- margin: 0;
4
- font-size: 62.5%;
5
- }
6
-
7
- body {
8
- font-size: 1.6rem;
9
- line-height: 1.5;
10
- -webkit-font-smoothing: antialiased;
11
- font-weight: 400;
12
- margin: 0;
13
- }
14
-
15
- .container {
16
- height: 100vh;
17
- overflow-y: scroll;
18
- }
19
-
20
- .page {
21
- min-height: 100vh;
22
- overflow-x: hidden;
23
- }
24
-
25
- *,
26
- *::before,
27
- *::after {
28
- box-sizing: border-box;
29
- }
30
-
31
- * {
32
- margin: 0;
33
- }
34
-
35
- img,
36
- details,
37
- picture,
38
- video,
39
- canvas,
40
- svg,
41
- object {
42
- display: block;
43
- max-width: 100%;
44
- }
45
-
46
- summary {
47
- display: list-item;
48
- }
49
-
50
- hr {
51
- box-sizing: content-box;
52
- height: 0;
53
- overflow: visible;
54
- }
55
-
56
- pre {
57
- font-family: monospace, monospace;
58
- font-size: 1em;
59
- }
60
-
61
- a {
62
- background-color: transparent;
63
- }
64
-
65
- abbr[title] {
66
- border-bottom: none;
67
- text-decoration: underline;
68
- text-decoration: underline dotted;
69
- }
70
-
71
- b,
72
- strong {
73
- font-weight: bolder;
74
- }
75
-
76
- code,
77
- kbd,
78
- samp {
79
- font-family: monospace, monospace;
80
- font-size: 1em;
81
- }
82
-
83
- small {
84
- font-size: 80%;
85
- }
86
-
87
- sub,
88
- sup {
89
- font-size: 75%;
90
- line-height: 0;
91
- position: relative;
92
- vertical-align: baseline;
93
- }
94
-
95
- sub {
96
- bottom: -0.25em;
97
- }
98
-
99
- sup {
100
- top: -0.5em;
101
- }
102
-
103
- img {
104
- border-style: none;
105
- height: auto;
106
- border-radius: 5px;
107
- overflow: hidden;
108
- }
109
-
110
- p,
111
- h1,
112
- h2,
113
- h3,
114
- h4,
115
- h5,
116
- h6 {
117
- overflow-wrap: break-word;
118
- }
119
-
120
- code,
121
- mark {
122
- -webkit-box-decoration-break: clone;
123
- box-decoration-break: clone;
1
+ @layer reset {
2
+ html {
3
+ -webkit-text-size-adjust: 100%;
4
+ margin: 0;
5
+ font-size: 62.5%;
6
+ }
7
+
8
+ body {
9
+ font-size: 1.6rem;
10
+ line-height: 1.5;
11
+ -webkit-font-smoothing: antialiased;
12
+ font-weight: 400;
13
+ margin: 0;
14
+ }
15
+
16
+ body {
17
+ min-height: 100vh;
18
+ overflow-x: hidden;
19
+ }
20
+
21
+ *,
22
+ *::before,
23
+ *::after {
24
+ box-sizing: border-box;
25
+ }
26
+
27
+ * {
28
+ margin: 0;
29
+ }
30
+
31
+ img,
32
+ details,
33
+ picture,
34
+ video,
35
+ canvas,
36
+ svg,
37
+ object {
38
+ display: block;
39
+ max-width: 100%;
40
+ }
41
+
42
+ summary {
43
+ display: list-item;
44
+ }
45
+
46
+ hr {
47
+ box-sizing: content-box;
48
+ height: 0;
49
+ overflow: visible;
50
+ }
51
+
52
+ pre {
53
+ font-family: monospace, monospace;
54
+ font-size: 1em;
55
+ }
56
+
57
+ a {
58
+ background-color: transparent;
59
+ }
60
+
61
+ abbr[title] {
62
+ border-bottom: none;
63
+ text-decoration: underline;
64
+ text-decoration: underline dotted;
65
+ }
66
+
67
+ b,
68
+ strong {
69
+ font-weight: bolder;
70
+ }
71
+
72
+ code,
73
+ kbd,
74
+ samp {
75
+ font-family: monospace, monospace;
76
+ font-size: 1em;
77
+ }
78
+
79
+ small {
80
+ font-size: 80%;
81
+ }
82
+
83
+ sub,
84
+ sup {
85
+ font-size: 75%;
86
+ line-height: 0;
87
+ position: relative;
88
+ vertical-align: baseline;
89
+ }
90
+
91
+ sub {
92
+ bottom: -0.25em;
93
+ }
94
+
95
+ sup {
96
+ top: -0.5em;
97
+ }
98
+
99
+ img {
100
+ border-style: none;
101
+ height: auto;
102
+ overflow: hidden;
103
+ }
104
+
105
+ p,
106
+ h1,
107
+ h2,
108
+ h3,
109
+ h4,
110
+ h5,
111
+ h6 {
112
+ overflow-wrap: break-word;
113
+ }
114
+
115
+ code,
116
+ mark {
117
+ -webkit-box-decoration-break: clone;
118
+ box-decoration-break: clone;
119
+ }
124
120
  }