Skip to content

Commit 077f1f7

Browse files
committed
Add files .gitignore package.json and modern.css
1 parent 405053e commit 077f1f7

File tree

3 files changed

+63
-0
lines changed

3 files changed

+63
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.idea
2+
/node_modules

modern.css

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
*, *::before, *::after {
2+
box-sizing: border-box;
3+
}
4+
5+
* {
6+
margin: 0;
7+
}
8+
9+
body {
10+
line-height: 1.5;
11+
-webkit-font-smoothing: antialiased;
12+
}
13+
14+
img, picture, video, canvas, svg {
15+
display: block;
16+
max-width: 100%;
17+
}
18+
19+
input, button, textarea, select {
20+
font: inherit;
21+
}
22+
23+
p, h1, h2, h3, h4, h5, h6 {
24+
overflow-wrap: break-word;
25+
}
26+
27+
p {
28+
text-wrap: pretty;
29+
}
30+
h1, h2, h3, h4, h5, h6 {
31+
text-wrap: balance;
32+
}
33+
34+
#root, #__next {
35+
isolation: isolate;
36+
}

package.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"name": "modern.css",
3+
"version": "1.0.0",
4+
"description": "A modern CSS for your project",
5+
"keywords": [
6+
"css",
7+
"reset",
8+
"framework"
9+
],
10+
"homepage": "https://github.com/joellesenne/modern.css#readme",
11+
"bugs": {
12+
"url": "https://github.com/joellesenne/modern.css/issues"
13+
},
14+
"repository": {
15+
"type": "git",
16+
"url": "git+https://github.com/joellesenne/modern.css.git"
17+
},
18+
"license": "MIT",
19+
"author": "Joël Lesenne <contact@joellesenne.dev>",
20+
"type": "commonjs",
21+
"main": "modern.css",
22+
"scripts": {
23+
"test": "echo \"Error: no test specified\" && exit 1"
24+
}
25+
}

0 commit comments

Comments
 (0)