49 lines
926 B
CSS
Executable File
49 lines
926 B
CSS
Executable File
/* Reset HTML Elements by Default */
|
|
|
|
html, body, div, blockquote, img, label, p, h1, h2, h3, h4, h5, h6, pre, ul, ol,
|
|
li, dl, dt, dd, form, a, fieldset, input, address, th, td {
|
|
margin: 0; padding: 0; border: 0; vertical-align: baseline;
|
|
}
|
|
|
|
body { line-height: 1; }
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-size: 100%;
|
|
font-weight: normal;
|
|
}
|
|
|
|
ul, ol { list-style: none; }
|
|
|
|
table {
|
|
border-collapse: collapse;
|
|
border-spacing: 0;
|
|
}
|
|
|
|
caption, th { text-align: left; }
|
|
|
|
dt, address, caption, cite, code, dfn, em, i, strong, b, th, var {
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
}
|
|
|
|
blockquote, q {
|
|
quotes: none;
|
|
}
|
|
|
|
blockquote:before, blockquote:after,
|
|
q:before, q:after {
|
|
content: "";
|
|
content: none;
|
|
}
|
|
|
|
a {
|
|
color: #000;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover { text-decoration: underline; }
|
|
|
|
:focus { }
|
|
|
|
ins { text-decoration: none; }
|
|
del { text-decoration: line-through; } |