import sql-ledger 2.4.4
[freeside.git] / sql-ledger / sql-ledger / css / sql-ledger.css
1 /* stylesheet for sql-ledger */
2
3 /* general stuff */
4 A:link { color: #a0522d; text-decoration: none; }
5 A:visited { color: #a0522d; text-decoration: none; }
6 A:active { color: #a0522d; text-decoration: underline; }
7 A:hover { color: white;
8   background-color: #bbbbbb;
9   text-decoration: none;
10 }
11
12 body {
13   font-family: Verdana, Arial, Helvetica;
14   font-size: 10pt;
15   background-color: white;
16   color: black
17 }
18
19 td {
20   font-family: Verdana, Arial, Helvetica;
21   font-size: 10pt;
22 }
23
24 th {
25   font-family: Verdana, Arial, Helvetica;
26   font-size: 10pt;
27 }
28
29 /* login and admin */
30 .login {
31   font-family: Verdana, Arial, Helvetica;
32 }
33 body.login {
34   background: #5a7d9b;
35   color: black;
36 }
37 h1.login {
38   font-size: 18pt;
39 }
40 table.login {
41   background-color: #FBFFE7;
42   padding: 20px;
43 }
44 td.login {
45   text-align: center;
46 }
47 th.login {
48   text-align: right;
49 }
50
51 body.admin {
52   background-color: #FBFFE7;
53   color: black;
54 }
55
56 body.menu {
57   background-color: #FBFFE7;
58   font-family: Verdana, Arial, Helvetica;
59   font-size: 10pt;
60   color: black;
61 }
62
63 .menuOut {
64   cursor: pointer;
65   background-color: #FBFFE7;
66   font-size: 10px;
67   color: #000084;
68   border: 1px solid #FBFFE7;
69   padding: 2px;
70   text-align: left;
71   font-weight: bold;
72 }
73
74 .menuOver {
75   cursor: pointer;
76   background-color: #5a7d9b;
77   font-size: 10px;
78   color: #ffffff;
79   border: 1px solid #FBFFE7;
80   padding: 2px;
81   text-align: left;
82   font-weight: bold;
83 }
84
85 .submenu {
86   font-family: Verdana, Arial, Helvetica;
87   font-size: 10px;
88   padding-left: 5px;
89 }
90
91 .menuOut a {
92   cursor: pointer;
93   margin: 0px;
94   background-color: #FBFFE7;
95   font-size: 10px;
96   color: #000084;
97   border: 0px solid #000000;
98   padding: 0px;
99   text-align: left;
100   font-weight: bold;
101 }
102
103 .menuOver a {
104   cursor: pointer;
105   margin: 0px;
106   background-color: #5a7d9b;
107   font-size: 10px;
108   color: #ffffff;
109   border: 0px solid #000000;
110   padding: 0px;
111   text-align: left;
112   font-weight: bold;
113 }
114
115 .submenu a {
116   color: #a0522d;
117   text-decoration: none;
118 }
119
120 .submenu a:hover {
121   color: #a0522d;
122   text-decoration: none;
123 }
124
125 .listtop { font-size: 10pt; background-color: black; color: white; }
126 .listheading { font-size: 10pt; background-color: #336666; color: white; }
127 A.listheading:link, A.listheading:active, A.listheading:visited {
128   color: white;
129   text-decoration: none; }
130 .listrow1 { font-size: 10pt; background-color: #e6e6fa; color: black; vertical-align: top; }
131 .listrow0 { font-size: 10pt; background-color: #ffe4e1; color: black; vertical-align: top; }
132 .listsubtotal { font-size: 10pt; background-color: #5a7d9b; color: white; }
133 .listtotal { font-size: 10pt; background-color: black; color: white; }
134
135 textarea {
136   font-family: Verdana, Arial, Helvetica;
137   font-size: 10pt;
138 }
139
140 input {
141   font-family: Verdana, Arial, Helvetica;
142   font-size: 10pt;
143 }
144
145 select {
146   font-family: Verdana, Arial, Helvetica;
147   font-size: 10pt;
148 }
149
150 .submit {
151   font-family: Verdana, Arial, Helvetica;
152   font-size: 10pt;
153   color: #000080;
154 }
155
156 .checkbox, .radio {
157   font-family: Verdana, Arial, Helvetica;
158   font-size: 10pt;
159 }
160
161 .plus0 {    /* font color for negative numbers */
162   color: red;
163 }
164
165 .plus1 {
166   color: green;
167 }
168
169 h2.confirm {
170   color: blue;
171   font-size: 14pt;
172 }
173
174 h2.error {
175   color: red;
176   font-size: 14pt;
177 }
178
179
180 /* media stuff */
181
182 @media screen {
183   .noscreen {   /* items with this class won't display */
184     display: none;
185   }
186 }
187
188 @media print {
189   .noprint {   /* items with this class won't print */
190     display: none;
191   }
192 }
193