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 103 104 105 106 107 108 109 110 111 112 113 114 115
|
/* basic classes */
body {
margin: 0px;
padding: 0px;
border: 0px;
background-color: #eeeeee;
color: #000000;
font-family: Georgia, Verdana, Arial;
}
h1, h2, h3, h4, h5, h6, p, li, td {
font-family: Georgia, Verdana, Arial;
color: #000000;
text-align: justify;
}
h1 {
font-size: 22px;
color: #338800;
}
h2 {
font-size: 18px;
color: #338800;
}
p, li, td {
font-size: 15px;
}
blockquote {
font-family: Courier, Georgia, "Times New Roman", Verdana, Arial;
font-size: 15px;
}
code, pre {
font-size: 13px;
}
a {
font-weight: bold;
color: #d4aa00;
text-decoration: none;
}
a:hover {
color: #338800;
background-color: #ffffff;
text-decoration: none;
}
table {
width: 100%;
border: 1px solid #000000;
padding: 0px;
}
th {
border: 1px solid #000000;
font-weight: bold;
text-align: center;
}
td {
border: 1px solid #000000;
}
td.c {
text-align: center;
}
/* custom classes */
#tmenu {
position: fixed;
width: 100%;
padding-top: 10px;
padding-bottom: 10px;
border: 0px;
background: #338000;
font-family: Georgia, "Times New Roman", Verdana, Arial;
font-size: 20px;
color: #ffffff;
text-align: center;
}
#tmenu a {
color: #eeeeee;
text-decoration: none;
}
#tmenu a:hover {
color: #d4aa00;
text-decoration: none;
}
#tcontent {
width: 90%;
text-align: justify;
padding-left: 40px;
}
#intro {
padding-top: 50px;
}
.dashedbox {
background-color: #ffffff;
border: 1px dashed #000000;
padding: 10px;
}
li.licenseblock {
font-family: Courier, Georgia, "Times New Roman", Verdana, Arial;
font-size: 15px;
}
|