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
|
body {
font-family: DejaVu Sans Condensed, DejaVu Sans, Arial Unicode MS, Tahoma, Verdana, Arial, Helvetica, sans-serif;
font-weight: normal;
font-size: medium;
color: black;
background-color: white;
}
td {
font-size: medium;
font-weight: normal;
text-decoration: none;
}
input {
font-size: medium;
}
h1 {
font-size: x-large;
font-weight: bold;
color: #EEE8AA /*palegoldenrod*/;
background-color: #4B0082 /*indigo*/;
padding: 3px 6px;
}
h2 {
font-size: large;
font-weight: bold;
color: #4B0082 /*indigo*/;
border: 1px;
border-style: solid;
border-color: #DAA520 /*goldenrod*/;
padding: 2px 5px;
}
h3 {
font-size: medium;
font-weight: bold;
color: #4B0082 /*indigo*/;
background-color: #EEE8AA /*palegoldenrod*/;
}
p.arabic {
direction: rtl;
}
a:link {
color: #4B0082 /*indigo*/;
text-decoration: none;
}
h1 a:link {
color: #FFD700 /*gold*/;
text-decoration: none;
}
a:visited {
color: #DAA520 /*goldenrod*/;
text-decoration: none;
}
h1 a:visited {
color: #FFD700 /*gold*/;
text-decoration: none;
}
a:hover {
color: #FFD700 /*gold*/;
text-decoration: none;
}
h1 a:hover {
color: #FFD700 /*gold*/;
text-decoration: none;
}
a:active {
color: #DAA520 /*goldenrod*/;
text-decoration: none;
}
p.char {
font-size: x-small;
}
p.byte {
font-size: x-small;
}
|