Created
May 20, 2012 20:51
-
-
Save awayken/2759489 to your computer and use it in GitHub Desktop.
Default LESS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// http://meyerweb.com/eric/tools/css/reset/ | |
// v2.0 | 20110126 | |
// License: none (public domain) | |
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 { | |
margin: 0; | |
padding: 0; | |
border: 0; | |
font-size: 100%; | |
font: inherit; | |
vertical-align: baseline; | |
} | |
// HTML5 display-role reset for older browsers | |
article, aside, details, figcaption, figure, | |
footer, header, hgroup, menu, nav, section { | |
display: block; | |
} | |
body { | |
line-height: 1; | |
} | |
ol, ul { | |
list-style: none; | |
} | |
blockquote, q { | |
quotes: none; | |
} | |
blockquote:before, blockquote:after, | |
q:before, q:after { | |
content: ''; | |
content: none; | |
} | |
table { | |
border-collapse: collapse; | |
border-spacing: 0; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import 'reset.less'; | |
.setHeadings () { | |
h1, h2, h3, h4, h5, h6 { padding-bottom: 0.8em; } | |
h1, h2, h3 { font-size: 1.76em; } | |
h4 { font-size: 1.5em; } | |
h5 { font-size: 1.3em; } | |
h6 { font-size: 1.1em; } | |
} | |
.setTables () { | |
table td { vertical-align: top; } | |
table th { vertical-align: middle; } | |
} | |
.setLists () { | |
ol { padding: 0 0 1.0em 1.5em; list-style-type: decimal; } | |
ol ol, ol ul { padding-bottom: 0; } | |
ul { padding: 0 0 1.0em 1.5em; list-style-type: disc; } | |
ul ol, ul ul { padding-bottom: 0; } | |
ul>li>ul { list-style-type: circle; } | |
ul>li>ul ul { list-style-type: square; } | |
} | |
.setText () { | |
a img { border: none; } | |
abbr { cursor: pointer; } | |
sup { position: relative; top: -0.5em; font-size: 0.8em; } | |
sub { position: relative; top: 0.5em; font-size: 0.8em; } | |
p { padding-bottom: 1.0em; } | |
blockquote { width: 70%; padding-bottom: 1.0em; margin: 0 auto; } | |
} | |
.setup (@baseSize: '1em') { | |
font-size: @baseSize; | |
.setHeadings; | |
.setTables; | |
.setLists; | |
.setText; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment