@akimeaki/reset-css 0.3.0 → 0.4.1
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/modules/reset.css +1 -34
- package/package.json +6 -3
package/modules/reset.css
CHANGED
|
@@ -1,34 +1 @@
|
|
|
1
|
-
@layer base {
|
|
2
|
-
* {
|
|
3
|
-
box-sizing: border-box;
|
|
4
|
-
padding: 0;
|
|
5
|
-
margin: 0;
|
|
6
|
-
font-family: "游ゴシック体", YuGothic, "游ゴシック", "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro",
|
|
7
|
-
"ヒラギノ角ゴ Pro W3", "MS Pゴシック", sans-serif;
|
|
8
|
-
font-size: 18px;
|
|
9
|
-
line-height: 1;
|
|
10
|
-
color: #494949;
|
|
11
|
-
text-decoration: none;
|
|
12
|
-
font-weight: normal;
|
|
13
|
-
text-align: left;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
*:focus {
|
|
17
|
-
outline: none;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
html,
|
|
21
|
-
body {
|
|
22
|
-
width: 100%;
|
|
23
|
-
height: 100%;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
ul,
|
|
27
|
-
ol {
|
|
28
|
-
padding-block-start: 0;
|
|
29
|
-
padding-block-end: 0;
|
|
30
|
-
padding-inline-start: 40px;
|
|
31
|
-
margin-inline-start: 0;
|
|
32
|
-
margin-inline-end: 0;
|
|
33
|
-
}
|
|
34
|
-
}
|
|
1
|
+
@layer base{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;text-align:left;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;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;text-align:linherit;-webkit-tap-highlight-color:inherit}*: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}ul *,ol *{padding-inline-start:0}}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@akimeaki/reset-css",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./modules/reset.css",
|
|
6
6
|
"files": [
|
|
@@ -12,10 +12,13 @@
|
|
|
12
12
|
"url": "https://github.com/AkimeAki/Reset-CSS.git"
|
|
13
13
|
},
|
|
14
14
|
"scripts": {
|
|
15
|
-
"format": "prettier --write './**/*'"
|
|
15
|
+
"format": "prettier --write './**/*'",
|
|
16
|
+
"build": "rm -rf ./modules/* && sass --no-source-map --style=compressed ./src/reset.scss ./modules/reset.css",
|
|
17
|
+
"publish": "npm run build && npm login && npm publish --access=public"
|
|
16
18
|
},
|
|
17
19
|
"devDependencies": {
|
|
18
20
|
"prettier": "3.3.3",
|
|
19
|
-
"prettier-plugin-sh": "0.14.0"
|
|
21
|
+
"prettier-plugin-sh": "0.14.0",
|
|
22
|
+
"sass": "1.87.0"
|
|
20
23
|
}
|
|
21
24
|
}
|