63 lines
1.1 KiB
CSS
63 lines
1.1 KiB
CSS
/**
|
|
* Basic Typography
|
|
*/
|
|
body {
|
|
font-family: Verdana, Geneva, Lucida, Arial, Helvetica, sans-serif;
|
|
font-size: 85%;
|
|
color: #222;
|
|
background: #fff;
|
|
margin: 1em 1.5em;
|
|
}
|
|
pre, code {
|
|
margin: 1.5em 0;
|
|
white-space: pre;
|
|
}
|
|
pre, code {
|
|
font: 1em 'andale mono', 'lucida console', monospace;
|
|
line-height:1.5;
|
|
}
|
|
a {
|
|
color: #436976;
|
|
background-color: transparent;
|
|
}
|
|
h1, h2, h3, h4, h5, h6 {
|
|
color: #003a6b;
|
|
background-color: transparent;
|
|
font: 100% Verdana, Geneva, Lucida, Arial, Helvetica, sans-serif;
|
|
margin: 0;
|
|
padding-top: 0.5em;
|
|
}
|
|
h1 {
|
|
font-size: 130%;
|
|
margin-bottom: 0.5em;
|
|
border-bottom: 1px solid #fcb100;
|
|
}
|
|
h2 {
|
|
font-size: 120%;
|
|
margin-bottom: 0.5em;
|
|
border-bottom: 1px solid #aaa;
|
|
}
|
|
h3 {
|
|
font-size: 110%;
|
|
margin-bottom: 0.5em;
|
|
text-decoration: underline;
|
|
}
|
|
h4 {
|
|
font-size: 100%;
|
|
font-weight: bold;
|
|
}
|
|
h5 {
|
|
font-size: 100%;
|
|
font-weight: bold;
|
|
}
|
|
h6 {
|
|
font-size: 80%;
|
|
font-weight: bold;
|
|
}
|
|
#tags {
|
|
display: none;
|
|
}
|
|
#shortdesc {
|
|
margin-bottom: 2em;
|
|
}
|