Skip to content

Commit 26f86b4

Browse files
committed
feat: add CSS resets
1 parent fecba8d commit 26f86b4

13 files changed

+417
-1
lines changed

addon/reset/EricMeyer.js

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
'use strict';
2+
3+
exports.addon = function (renderer) {
4+
if (process.env.NODE_ENV !== 'production') {
5+
require('../__dev__/warnOnMissingDependencies')('reset', renderer, ['put']);
6+
}
7+
8+
var css = {
9+
'html,body,div,span,applet,object,iframe,table,caption,tbody,tfoot,thead,tr,th,td,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,dl,dt,dd,ol,ul,li,fieldset,form,label,legend': {
10+
'vertical-align': 'baseline',
11+
ff: 'inherit',
12+
fw: 'inherit',
13+
fs: 'inherit',
14+
fz: '100%',
15+
out: 0,
16+
pad: 0,
17+
mar: 0,
18+
bd: 0,
19+
},
20+
':focus': {
21+
out: 0,
22+
},
23+
body: {
24+
bg: 'white',
25+
lh: 1,
26+
col: 'black',
27+
},
28+
'ol, ul': {
29+
'list-style': 'none',
30+
},
31+
table: {
32+
'border-collapse': 'separate',
33+
'border-spacing': 0,
34+
},
35+
'caption, th, td': {
36+
fw: 'normal',
37+
ta: 'left',
38+
},
39+
'blockquote:before, blockquote:after, q:before, q:after': {
40+
content: '""',
41+
},
42+
'blockquote, q': {
43+
quotes: '"" ""',
44+
},
45+
};
46+
47+
renderer.put('', css);
48+
};

addon/reset/EricMeyerCondensed.js

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
'use strict';
2+
3+
exports.addon = function (renderer) {
4+
if (process.env.NODE_ENV !== 'production') {
5+
require('../__dev__/warnOnMissingDependencies')('reset', renderer, ['put']);
6+
}
7+
8+
var css = {
9+
'body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td': {
10+
pad: 0,
11+
mar: 0,
12+
},
13+
'fieldset, img': {
14+
bd: 0,
15+
},
16+
table: {
17+
'border-collapse': 'collapse',
18+
'border-spacing': 0,
19+
},
20+
'ol, ul': {
21+
'list-style': 'none',
22+
},
23+
'address, caption, cite, code, dfn, em, strong, th, var': {
24+
fw: 'normal',
25+
fs: 'normal',
26+
},
27+
'caption, th': {
28+
ta: 'left',
29+
},
30+
'h1, h2, h3, h4, h5, h6': {
31+
fw: 'normal',
32+
fs: '100%',
33+
},
34+
'q:before, q:after': {
35+
con: "''",
36+
},
37+
'abbr, acronym': {
38+
bd: 0,
39+
},
40+
};
41+
42+
renderer.put('', css);
43+
};
44+

addon/reset/Minimalistic.js

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
'use strict';
2+
3+
exports.addon = function (renderer) {
4+
if (process.env.NODE_ENV !== 'production') {
5+
require('../__dev__/warnOnMissingDependencies')('reset', renderer, ['put']);
6+
}
7+
8+
var css = {
9+
'*': {
10+
pad: 0,
11+
mar: 0,
12+
},
13+
};
14+
15+
renderer.put('', css);
16+
};

addon/reset/Minimalistic2.js

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
'use strict';
2+
3+
exports.addon = function (renderer) {
4+
if (process.env.NODE_ENV !== 'production') {
5+
require('../__dev__/warnOnMissingDependencies')('reset', renderer, ['put']);
6+
}
7+
8+
var css = {
9+
'*': {
10+
pad: 0,
11+
mar: 0,
12+
bd: 0,
13+
},
14+
};
15+
16+
renderer.put('', css);
17+
};

addon/reset/Minimalistic3.js

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
'use strict';
2+
3+
exports.addon = function (renderer) {
4+
if (process.env.NODE_ENV !== 'production') {
5+
require('../__dev__/warnOnMissingDependencies')('reset', renderer, ['put']);
6+
}
7+
8+
var css = {
9+
'*': {
10+
pad: 0,
11+
mar: 0,
12+
bd: 0,
13+
out: 0,
14+
},
15+
};
16+
17+
renderer.put('', css);
18+
};

addon/reset/PoorMan.js

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
'use strict';
2+
3+
exports.addon = function (renderer) {
4+
if (process.env.NODE_ENV !== 'production') {
5+
require('../__dev__/warnOnMissingDependencies')('reset', renderer, ['put']);
6+
}
7+
8+
var css = {
9+
'html, body': {
10+
pad: 0,
11+
mar: 0,
12+
},
13+
html: {
14+
fz: '1em',
15+
},
16+
body: {
17+
fz: '100%',
18+
},
19+
'a img, :link img, :visited img': {
20+
bd: 0,
21+
},
22+
};
23+
24+
renderer.put('', css);
25+
};

addon/reset/ShaunInman.js

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
'use strict';
2+
3+
exports.addon = function (renderer) {
4+
if (process.env.NODE_ENV !== 'production') {
5+
require('../__dev__/warnOnMissingDependencies')('reset', renderer, ['put']);
6+
}
7+
8+
var css = {
9+
'body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,p,blockquote,table,th,td,embed,object': {
10+
pad: 0,
11+
mar: 0,
12+
},
13+
table: {
14+
'border-collapse': 'collapse',
15+
'border-spacing': 0,
16+
},
17+
'fieldset,img,abbr': {
18+
bd: 0,
19+
},
20+
'address,caption,cite,code,dfn,em,h1,h2,h3,h4,h5,h6,strong,th,var': {
21+
fw: 'normal',
22+
fs: 'normal',
23+
},
24+
ul: {
25+
'list-style': 'none',
26+
},
27+
'caption,th': {
28+
ta: 'left',
29+
},
30+
'h1,h2,h3,h4,h5,h6': {
31+
fz: '1.0em',
32+
},
33+
'q:before,q:after': {
34+
con: '""',
35+
},
36+
'a,ins': {
37+
td: 'none',
38+
},
39+
};
40+
41+
renderer.put('', css);
42+
};

addon/reset/Siolon.js

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
'use strict';
2+
3+
exports.addon = function (renderer) {
4+
if (process.env.NODE_ENV !== 'production') {
5+
require('../__dev__/warnOnMissingDependencies')('reset', renderer, ['put']);
6+
}
7+
8+
var css = {
9+
'*': {
10+
'vertical-align': 'baseline',
11+
ff: 'inherit',
12+
fs: 'inherit',
13+
fz: '100%',
14+
bd: 'none',
15+
pad: 0,
16+
mar: 0,
17+
},
18+
body: {
19+
pad: '5px',
20+
},
21+
'h1, h2, h3, h4, h5, h6, p, pre, blockquote, form, ul, ol, dl': {
22+
mar: '20px 0',
23+
},
24+
'li, dd, blockquote': {
25+
marl: '40px',
26+
},
27+
table: {
28+
'border-collapse': 'collapse',
29+
'border-spacing': 0,
30+
},
31+
};
32+
33+
renderer.put('', css);
34+
};

addon/reset/Tantek.js

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
'use strict';
2+
3+
exports.addon = function (renderer) {
4+
if (process.env.NODE_ENV !== 'production') {
5+
require('../__dev__/warnOnMissingDependencies')('reset', renderer, ['put']);
6+
}
7+
8+
var css = {
9+
':link,:visited': {
10+
td: 'none',
11+
},
12+
'ul,ol': {
13+
'list-style': 'none',
14+
},
15+
'h1,h2,h3,h4,h5,h6,pre,code,p': {
16+
fz: '1em',
17+
},
18+
'ul,ol,dl,li,dt,dd,h1,h2,h3,h4,h5,h6,pre,form,body,html,p,blockquote,fieldset,input': {
19+
pad: 0,
20+
mar: 0,
21+
},
22+
'a img,:link img,:visited img': {
23+
bd: 'none',
24+
},
25+
address: {
26+
fs: 'normal',
27+
},
28+
};
29+
30+
renderer.put('', css);
31+
};

addon/reset/Tripoli.js

+75
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
'use strict';
2+
3+
exports.addon = function (renderer) {
4+
if (process.env.NODE_ENV !== 'production') {
5+
require('../__dev__/warnOnMissingDependencies')('reset', renderer, ['put']);
6+
}
7+
8+
var css = {
9+
'*': {
10+
td: 'none',
11+
fz: '1em',
12+
out: 'none',
13+
pad: 0,
14+
mar: 0,
15+
},
16+
'code,kbd,samp,pre,tt,var,textarea,input,select,isindex,listing,xmp,plaintext': {
17+
'white-space': 'normal',
18+
fz: '1em',
19+
font: 'inherit',
20+
},
21+
'dfn,i,cite,var,address,em': {
22+
fs: 'normal',
23+
},
24+
'th,b,strong,h1,h2,h3,h4,h5,h6': {
25+
fw: 'normal',
26+
},
27+
'a,img,a img,iframe,form,fieldset,abbr,acronym,object,applet,table': {
28+
bd: 'none',
29+
},
30+
table: {
31+
'border-collapse': 'collapse',
32+
'border-spacing': 0,
33+
},
34+
'caption,th,td,center': {
35+
'vertical-align': 'top',
36+
ta: 'left',
37+
},
38+
body: {
39+
bg: 'white',
40+
lh: 1,
41+
col: 'black',
42+
},
43+
q: {
44+
quotes: '"" ""',
45+
},
46+
'ul,ol,dir,menu': {
47+
'list-style': 'none',
48+
},
49+
'sub,sup': {
50+
'vertical-align': 'baseline',
51+
},
52+
a: {
53+
col: 'inherit',
54+
},
55+
hr: {
56+
d: 'none',
57+
},
58+
font: {
59+
col: 'inherit !important',
60+
font: 'inherit !important',
61+
},
62+
marquee: {
63+
ov: 'inherit !important',
64+
'-moz-binding': 'none',
65+
},
66+
blink: {
67+
td: 'none',
68+
},
69+
nobr: {
70+
'white-space': 'normal',
71+
},
72+
};
73+
74+
renderer.put('', css);
75+
};

addon/reset/Universal.js

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
'use strict';
2+
3+
exports.addon = function (renderer) {
4+
if (process.env.NODE_ENV !== 'production') {
5+
require('../__dev__/warnOnMissingDependencies')('reset', renderer, ['put']);
6+
}
7+
8+
var css = {
9+
'*': {
10+
'vertical-align': 'baseline',
11+
fw: 'inherit',
12+
ff: 'inherit',
13+
fs: 'inherit',
14+
fz: '100%',
15+
bd: '0 none',
16+
out: 0,
17+
pad: 0,
18+
mar: 0,
19+
},
20+
};
21+
22+
renderer.put('', css);
23+
};

0 commit comments

Comments
 (0)