Add button background for custom buttons
[infodrom/hallinta] / stylesheet.css
1 body {
2     font-family: Verdana, Helvetica, Arial, sans-serif;
3     font-size: 10px;
4     background: #e3f0ff;
5     color: #000000;
6 }
7
8 h3.title, h3.title2 {
9     padding-top: 2px;
10     padding-bottom: 2px;
11 }
12
13 div.ricoLG_cell {
14     padding-top: 0px;
15     padding-bottom: 0px;
16     color: #666;
17     cursor: default;
18 }
19
20 div.ricoWindow {
21     border: 1px solid #BBB;
22 }
23 div.ricoTitle {
24     background-color: #316994;
25     color: white;
26     color: #EEE;
27     padding-left: 2px;
28     cursor: pointer;
29 }
30 div.ricoContent {
31     padding-top: 6px;
32     padding-left: 3px;
33     font-size: 12px;
34 }
35
36 div.form {
37     margin-top: 0px;
38     padding: 2px;
39     border: 1px solid #AAA;
40     color: #555;
41     overflow: hidden;
42 }
43
44 div.second {
45     margin-top: 10px;
46 }
47 div.second div.title {
48     margin-bottom: 5px;
49 }
50
51 input, select {
52     border: 1px solid #CCC;
53     color: inherit;
54     background: white;
55 }
56
57 textarea {
58     border: 1px solid #CCC;
59     font-size: 90%;
60     color: inherit;
61 }
62
63 button {
64     border: 1px solid #CCC;
65     background: #DDD;
66     color: inherit;
67 }
68
69 button.builtin {
70     background-image: url('images/bg_button.png');
71     background-repeat: repeat-x;
72 }
73
74 button.custom {
75     background-image: url('images/bg_button_custom.png');
76     background-repeat: repeat-x;
77 }
78
79 button:hover {
80     background: #EEE;
81 }
82
83 button.disabled:hover {
84     background: #DDD;
85 }
86
87 div.buttons {
88     text-align: center;
89     padding-top: 0px;
90     padding-bottom: 5px;
91 }
92
93 div.buttons button {
94     padding-left: 1px;
95     padding-right: 1px;
96 }
97
98 div.buttons span {
99     margin-left: 5px;
100 }
101
102 img.calendar {
103     margin-bottom: -6px;
104 }
105
106 p#form_status {
107     font-size: 80%;
108     margin-top: 0px;
109 }
110
111 span.status_ok {
112     color: green;
113 }
114
115 span.status_error {
116     color: red;
117 }
118
119 div#details {
120     color: #424242;
121     padding-left: 2px;
122 }
123
124 div#details ul {
125     padding: 0;
126     margin: 0;
127 }
128
129 div#details li {
130     list-style-type: none;
131 }
132
133 div#grid_info {
134     text-align: left;
135     color: #444;
136 }
137
138 div.alignrightpad {
139     text-align: right;
140     padding-right: 3px;
141 }
142
143 div.info {
144     float: left;
145 }
146 div.status {
147     float: right;
148     text-align: right;
149 }