@akimeaki/reset-css 0.5.1 → 0.7.0
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/README.md +12 -0
- package/modules/reset.css +1 -1
- package/package.json +11 -3
package/README.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# このパッケージについて / About
|
|
2
|
+
|
|
3
|
+
このパッケージは、作者個人の利用を主目的として作成したリセットCSSです。
|
|
4
|
+
特定の思想や好みに基づいて設計されており、汎用的な利用を保証するものではありません。
|
|
5
|
+
|
|
6
|
+
This package is a reset CSS primarily created for the author's personal use.
|
|
7
|
+
It is designed based on specific preferences and opinions, and is not intended to be a universal solution.
|
|
8
|
+
|
|
9
|
+
考え方や挙動が合う場合は、自由に利用・カスタマイズしてください。
|
|
10
|
+
|
|
11
|
+
If its behavior and design philosophy fit your needs, feel free to use and customize it.
|
|
12
|
+
|
|
1
13
|
# インストール
|
|
2
14
|
|
|
3
15
|
```
|
package/modules/reset.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@layer aki-reset{body{font-family:"游ゴシック体",YuGothic,"游ゴシック","メイリオ",Meiryo,"Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","MS Pゴシック",sans-serif;font-size:18px;line-height:1;color:#494949;text-decoration:none;font-weight:normal;font-variant-ligatures:none;-webkit-tap-highlight-color:rgba(0,0,0,0);word-wrap:break-word;overflow-wrap:break-word;word-break:break-word}*{box-sizing:inherit;box-sizing:border-box;padding:0;margin:0;text-align:left;word-wrap:inherit;overflow-wrap:inherit;word-break:inherit;font-family:inherit;font-size:inherit;line-height:inherit;color:inherit;text-decoration:inherit;font-weight:inherit;font-variant-ligatures:inherit;-webkit-tap-highlight-color:inherit;border:none}*:focus{outline:none}html,body{width:100%;height:100%}ul,ol{padding-block-start:0;padding-block-end:0;padding-inline-start:40px;margin-inline-start:0;margin-inline-end:0}
|
|
1
|
+
@layer aki-reset{body{font-family:"游ゴシック体",YuGothic,"游ゴシック","メイリオ",Meiryo,"Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","MS Pゴシック",sans-serif;font-size:18px;line-height:1;color:#494949;text-decoration:none;font-weight:normal;font-variant-ligatures:none;-webkit-tap-highlight-color:rgba(0,0,0,0);word-wrap:break-word;overflow-wrap:break-word;word-break:break-word}*{box-sizing:inherit;box-sizing:border-box;padding:0;margin:0;text-align:left;word-wrap:inherit;overflow-wrap:inherit;word-break:inherit;font-family:inherit;font-size:inherit;line-height:inherit;color:inherit;text-decoration:inherit;font-weight:inherit;font-variant-ligatures:inherit;-webkit-tap-highlight-color:inherit;border:none}*:focus{outline:none}html,body{width:100%;height:100%}ul,ol{padding-block-start:0;padding-block-end:0;padding-inline-start:40px;margin-inline-start:0;margin-inline-end:0}input,select,textarea{appearance:none;background-color:rgba(0,0,0,0);border:1px solid #494949;border-radius:0}button{background-color:rgba(0,0,0,0);border:1px solid #494949;border-radius:0}table,thead,tbody,tr,th,td{border:1px solid #494949;border-radius:0;border-collapse:collapse}}
|
package/package.json
CHANGED
|
@@ -1,8 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@akimeaki/reset-css",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./modules/reset.css",
|
|
6
|
+
"engines": {
|
|
7
|
+
"node": "24.12.0",
|
|
8
|
+
"npm": "11.6.2"
|
|
9
|
+
},
|
|
10
|
+
"volta": {
|
|
11
|
+
"node": "24.12.0",
|
|
12
|
+
"npm": "11.6.2"
|
|
13
|
+
},
|
|
6
14
|
"files": [
|
|
7
15
|
"modules"
|
|
8
16
|
],
|
|
@@ -13,12 +21,12 @@
|
|
|
13
21
|
},
|
|
14
22
|
"scripts": {
|
|
15
23
|
"format": "prettier --write './**/*'",
|
|
16
|
-
"build": "
|
|
17
|
-
"push": "npm run build && npm login && npm publish --access=public"
|
|
24
|
+
"build": "rimraf ./modules/ && sass --no-source-map --style=compressed ./src/reset.scss ./modules/reset.css"
|
|
18
25
|
},
|
|
19
26
|
"devDependencies": {
|
|
20
27
|
"prettier": "3.3.3",
|
|
21
28
|
"prettier-plugin-sh": "0.14.0",
|
|
29
|
+
"rimraf": "6.1.2",
|
|
22
30
|
"sass": "1.87.0"
|
|
23
31
|
}
|
|
24
32
|
}
|