The color watchers now work again.
[rgbconverter.git] / RGB Converter.wdgt / Widget.css
1 /*=====================================================================*\
2 || ###################################################################
3 || # RGB Converter
4 || # Copyright (c)2002-2010 Blue Static
5 || #
6 || # This program is free software; you can redistribute it and/or modify
7 || # it under the terms of the GNU General Public License as published by
8 || # the Free Software Foundation; version 2 of the License.
9 || #
10 || # This program is distributed in the hope that it will be useful, but
11 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 || # more details.
14 || #
15 || # You should have received a copy of the GNU General Public License along
16 || # with this program; if not, write to the Free Software Foundation, Inc.,
17 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
18 || ###################################################################
19 \*=====================================================================*/
20
21 /* ################################################################### */
22 /* Global */
23
24 body
25 {
26 margin: 0px;
27 font-family: "Lucida Grande";
28 font-weight: bold;
29 color: #FFFFFF;
30 }
31
32 a
33 {
34 color: #FFFFFF;
35 text-decoration: underline;
36 }
37
38 /* ################################################################### */
39 /* Front */
40
41 #frontimage
42 {
43 z-index: 500;
44 position: absolute;
45 }
46
47 #redinput
48 {
49 z-index: 1000;
50 font-size: 11px;
51
52 border: 1px solid red;
53 text-align: center;
54
55 position: absolute;
56 top: 25px;
57 left: 100px;
58 }
59
60 #greeninput
61 {
62 z-index: 1000;
63 font-size: 11px;
64
65 border: 1px solid green;
66 text-align: center;
67
68 position: absolute;
69 top: 130px;
70 left: 100px;
71 }
72
73 #blueinput
74 {
75 z-index: 1000;
76 font-size: 11px;
77
78 border: 1px solid blue;
79 text-align: center;
80
81 position: absolute;
82 top: 80px;
83 left: 7px;
84 }
85
86 #hexinput
87 {
88 z-index: 1000;
89 font-size: 11px;
90 font-weight: bold;
91
92 border: 1px solid black;
93 text-align: center;
94
95 position: absolute;
96 top: 80px;
97 left: 62px;
98 }
99
100 /* ################################################################### */
101 /* Back */
102
103 #backtext
104 {
105 position: absolute;
106 top: 29px;
107 left: 30px;
108 font-size: 10px;
109 }
110
111 #backbutton
112 {
113 position: absolute;
114 top: 2px;
115 left: 440px;
116 width: 500px;
117 }
118
119 /* ################################################################### */
120 /* Flip insturments */
121
122 .flip
123 {
124 position: absolute;
125 top: 45px;
126 left: 510px;
127 width: 13px;
128 height: 13px;
129 }
130
131 #flip
132 {
133 opacity: 0;
134 background: url(file:///System/Library/WidgetResources/ibutton/white_i.png) no-repeat top left;
135 z-index: 8000;
136 }
137
138 #fliprollie
139 {
140 display: none;
141 opacity: 0.25;
142 background: url(file:///System/Library/WidgetResources/ibutton/white_rollie.png) no-repeat top left;
143 z-index: 7999;
144 }
145
146 #front
147 {
148 display: block;
149 }
150
151 #back
152 {
153 display: none;
154 }
155
156 .doneButton
157 {
158 position: absolute;
159 bottom: 10px;
160 left: 10px;
161 }
162
163 /*=====================================================================*\
164 || ###################################################################
165 || # $HeadURL$
166 || # $Id$
167 || ###################################################################
168 \*=====================================================================*/