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
|
body {
font-family: -apple-system, BlinkMacSystemFont,
"Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji",
"Segoe UI Emoji", "Segoe UI Symbol";
font-size: 16px;
line-height: 1.5;
color: #333;
background-color: #fff;
}
#container {
border: 2px solid #078311;
min-height: 103%;
}
h1 {
background-color: #078311;
color: white;
font-size: 2.45em;
margin: 0;
padding: .3em;
}
h2 {
color: #078311;
margin-bottom: .5em;
}
hr {
color: #078311;
}
#menu {
background-color: #00C029;
padding: .5em;
margin-bottom: .5em;
}
#menu a {
text-decoration: none;
color: blue
}
#menu a:hover {
text-decoration: underline
}
#menu a:visited {
color: blue
}
#content {
margin: 1em;
}
.logo {
float: right;
}
pre {
background: #E0E0E0;
}
|