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 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
|
@import "base.css";
body {
color : #c0c0e0;
background : #000000;
scrollbar-3d-light-color : black;
scrollbar-arrow-color : white;
scrollbar-base-color : black;
scrollbar-dark-shadow-color : black;
scrollbar-face-color : black;
scrollbar-highlight-color : #666666;
scrollbar-shadow-color : gray;
}
strong{
color:#ffff00;
}
h2,h3{
border : thin outset #202070;
}
h2{
background : #202070;
}
h3{
margin-left: 0.5em;
background : #101050;
}
h2, h3, h4{
color : #ffffff;
padding : 0.2em;
}
h4{
margin-left: 1.0em;
}
pre{
border: solid thin #202070;
background-color: #000000;
overflow:auto;
font-size: smaller;
}
table {
border : none;
}
th,td {
padding : 0.2em;
}
th {
background : #303060;
border : outset 1px #303060;
}
td{
background : #000000;
border : solid 1px #404080;
}
th.empty,td.empty{
background : transparent;
}
table.clear,
table.clear th,
table.clear td {
border : none;
background : transparent;
}
blockquote{
color: #9999cc;
border: solid 1px #669999;
}
hr{
border-width: 0 0;
border-color: #669999;
padding: 0;
height: 1px;
color: #669999;
background-color: #669999;
width: 90%;
}
em{
font-style: italic;
}
a {
}
a:link {
color : #00ff00;
}
a:visited{
color : #00c800;
}
a:link:hover {
background : green;
text-decoration: none;
}
a:visited:hover {
background : green;
text-decoration: none;
}
input, textarea{
color : #c0c0e0;
background-color : black;
}
BUTTON{
color: #ffffff;
border : thin outset #f8f8ff;
background-color : #a9a9a9;
}
|