1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
<style>
body {
margin: 0;
padding: 0;
font-family: verdana, sans-serif;
color: #000;
background-color: #fff;
}
#headContainer, #bodyContainer, #footer {
margin: 0 auto;
width: 95%;
}
@media (min-width:950px) {
#headContainer, #bodyContainer, #footer {
width: 85%;
}
}
#footerContainer {
margin-top: 6ex;
margin-bottom: 2ex;
}
dd p {
margin-top: 1ex;
}
p, ol, ul, dl, pre {
line-height: 150%;
}
dd {
margin-bottom: 8px;
}
h1 {
margin-top: 2ex;
font-size: 175%;
}
h2 {
margin-top: 2ex;
font-size: 150%;
}
pre code {
padding: 0;
font-size: 120%;
line-height: 150%;
}
code.shortcode, code.longcode {
padding: 2px 3px;
font-size: 120%;
background-color: #eee;
}
/* prevent line-breaks in short code spans */
code.shortcode {
white-space: pre;
}
pre.codeblock {
margin: 2ex 2em 2ex 2em;
padding: 2ex;
border-radius: 8px;
border-width: 1px;
border-style: solid;
background-color: #eee;
box-shadow: 3px 3px 5px #ddd;
border-color: #ccc;
}
</style>
<!--eof-->
|