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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
|
/* common.css - MoinMoin Default Styles
Copyright (c) 2001, 2002, 2003 by Jrgen Hermann
*/
/* content styles */
html {
background-color: white;
color: black;
}
h2 {
font-size: 1.6em;
}
h3 {
font-size: 1.3em;
}
h4, h5, h6 {
font-size: 1em;
}
li p {
margin: .2em 0;
}
li.gap {
margin-top: 8pt;
}
a img {
border: 0;
}
img.drawing {
border: 0;
}
dt {
font-weight: bold;
}
pre {
padding: .5em;
white-space: pre-wrap;
}
body {
margin-top: 2em;
margin-left: 5%;
margin-right: 5%;
}
h1, h2, h3, h4, h5, h6 {
color: #2b5e82;
}
a:link {
background-color: inherit;
color: #2b5e82;
}
a:visited {
background-color: inherit;
color: #52188b;
}
pre {
border: 1px solid #CBCBCB;
background-color: #FFF8ED;
color: black;
}
hr {
clear: both;
border-style: none;
background-color: #CBCBCB;
color: #CBCBCB;
}
p.footer {
color: #000000;
text-align: center;
font-size: 9px;
}
table {
border: 0;
width: 100%;
}
.center {
text-align: center;
}
div.nav a {
border-right: 1px solid black;
padding-right: 4px;
}
div.nav :last-child {
border-right: none;
}
|