Files

88 lines
1.6 KiB
CSS

/* line 2, _reset.sass */
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;
}
body {
height: 100%;
color: #222222;
font-size: 14px;
font-family: 'Open Sans', Arial, Verdana, sans-serif;
font-weight: normal;
margin: 10px;
padding: 0px;
line-height: 18px;
}
h1 {
font-size: 16px;
font-family: 'Open Sans', Arial, Verdana, sans-serif;
font-weight: bold;
margin-top: 10px;
margin-bottom: 10px;
}
h2 {
font-size: 16px;
font-family: 'Open Sans', Arial, Verdana, sans-serif;
font-weight: normal;
margin-top: 5px;
margin-bottom: 10px;
}
table td, table th
{
padding: 5px;
}
table {
border-spacing:0;
border-collapse:collapse;
}
table thead tr td {
background-color: #eeeeee;
}
table tbody tr:nth-child(odd) td {
background-color: #cccccc;
}
table tbody tr:nth-child(even) td {
background-color: #dddddd;
}
a {
text-decoration: none;
color: #0066b3;
}
a:hover {
text-decoration: underline;
}
ul {
padding-left: 20px;
}
.deprecationMessage {
font-weight: bold;
color: red;
}