import of sql-ledger 2.0.8
[freeside.git] / 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: rgb(187,187,187);
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 /* login and admin */
25 .login {
26   font-family: Verdana, Arial, Helvetica;
27 }
28 body.login {
29   background: #5a7d9b;
30   color: black;
31 }
32 h1.login {
33   font-size: 18pt;
34 }
35 table.login {
36   background-color: #FBFFE7;
37   padding: 20px;
38 }
39 td.login {
40   text-align: center;
41 }
42 th.login {
43   text-align: right;
44 }
45
46 body.admin {
47   background-color: #FBFFE7;
48   color: black;
49 }
50
51 body.menu {
52   background-color: #FBFFE7;
53   font-family: Verdana, Arial, Helvetica;
54   font-size: 10pt;
55   color: black;
56 }
57
58
59 .listtop { font-size: 10pt; background-color: black; color: white; }
60 .listheading { font-size: 10pt; background-color: #336666; color: white; }
61 A.listheading:link, A.listheading:active, A.listheading:visited {
62   color: white;
63   text-decoration: none; }
64 .listrow1 { background-color: #e6e6fa; color: black; vertical-align: top; }
65 .listrow0 { background-color: #ffe4e1; color: black; vertical-align: top; }
66 .listsubtotal { font-size: 10pt; background-color: #5a7d9b; color: white; }
67 .listtotal { font-size: 10pt; background-color: black; color: white; }
68
69 .submit {
70   font-size: 12pt
71   font-family: Verdana, Arial, Helvetica;
72   color: #000080;
73 }
74 .checkbox, .radio {
75   font-family: Verdana, Arial, Helvetica;
76   color: #778899;
77 }
78
79 .plus0 {    /* font color for negative numbers */
80   color: red;
81 }
82
83 .plus1 {
84   color: green;
85 }
86
87 h2.confirm {
88   color: blue;
89   font-size: 14pt;
90 }
91
92 h2.error {
93   color: red;
94   font-size: 14pt;
95 }
96
97
98 /* media stuff */
99
100 @media screen {
101   .noscreen {   /* items with this class won't display */
102     display: none;
103   }
104 }
105
106 @media print {
107   .noprint {   /* items with this class won't print */
108     display: none;
109   }
110 }
111
112
113