Skip to content

Commit d975a0d

Browse files
committed
Dropping support for meyer-reset in lieu of compass/reset
1 parent 787d43e commit d975a0d

File tree

3 files changed

+32
-16
lines changed

3 files changed

+32
-16
lines changed

config.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# Compass Configuration
22

33
require 'grid-coordinates'
4-
require 'meyer-reset'
54

65
# HTTP paths
76
http_path = '/'

public/stylesheets/stylesheet.css

Lines changed: 31 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
1-
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
1+
html, body, div, span, applet, object, iframe,
2+
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
3+
a, abbr, acronym, address, big, cite, code,
4+
del, dfn, em, img, ins, kbd, q, s, samp,
5+
small, strike, strong, sub, sup, tt, var,
6+
b, u, i, center,
7+
dl, dt, dd, ol, ul, li,
8+
fieldset, form, label, legend,
9+
table, caption, tbody, tfoot, thead, tr, th, td,
10+
article, aside, canvas, details, embed,
11+
figure, figcaption, footer, header, hgroup,
12+
menu, nav, output, ruby, section, summary,
13+
time, mark, audio, video {
214
margin: 0;
315
padding: 0;
416
border: 0;
@@ -7,10 +19,6 @@ html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockq
719
vertical-align: baseline;
820
}
921

10-
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
11-
display: block;
12-
}
13-
1422
body {
1523
line-height: 1;
1624
}
@@ -19,23 +27,32 @@ ol, ul {
1927
list-style: none;
2028
}
2129

22-
blockquote, q {
23-
quotes: none;
30+
table {
31+
border-collapse: collapse;
32+
border-spacing: 0;
2433
}
2534

26-
blockquote:before, blockquote:after {
27-
content: "";
28-
content: none;
35+
caption, th, td {
36+
text-align: left;
37+
font-weight: normal;
38+
vertical-align: middle;
2939
}
3040

31-
q:before, q:after {
41+
q, blockquote {
42+
quotes: none;
43+
}
44+
q:before, q:after, blockquote:before, blockquote:after {
3245
content: "";
3346
content: none;
3447
}
3548

36-
table {
37-
border-collapse: collapse;
38-
border-spacing: 0;
49+
a img {
50+
border: none;
51+
}
52+
53+
article, aside, details, figcaption, figure,
54+
footer, header, hgroup, menu, nav, section {
55+
display: block;
3956
}
4057

4158
.font-helvetica, body {

sass/_base.sass

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// CSS Reset
2-
@import meyer-reset
2+
@import compass/reset
33

44
// Compass Stuff
55
@import compass/utilities

0 commit comments

Comments
 (0)