Pixel push the Done/back button.
[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 #shadow {
39 z-index: -1000;
40 position: absolute;
41 }
42
43 #wheel {
44 margin-top: 7px;
45 margin-left: 7px;
46 }
47
48 /* ################################################################### */
49 /* Front */
50
51 #redinput
52 {
53 z-index: 1000;
54 font-size: 11px;
55
56 border: 1px solid red;
57 text-align: center;
58
59 position: absolute;
60 top: 32px;
61 left: 108px;
62 }
63
64 #greeninput
65 {
66 z-index: 1000;
67 font-size: 11px;
68
69 border: 1px solid green;
70 text-align: center;
71
72 position: absolute;
73 top: 140px;
74 left: 114px;
75 }
76
77 #blueinput
78 {
79 z-index: 1000;
80 font-size: 11px;
81
82 border: 1px solid blue;
83 text-align: center;
84
85 position: absolute;
86 top: 90px;
87 left: 15px;
88 }
89
90 #hexinput
91 {
92 z-index: 1000;
93 font-size: 11px;
94 font-weight: bold;
95
96 border: 1px solid black;
97 text-align: center;
98
99 position: absolute;
100 top: 90px;
101 left: 72px;
102 }
103
104 /* ################################################################### */
105 /* Back */
106
107 #backtext
108 {
109 position: absolute;
110 top: 90px;
111 left: 27px;
112 width: 140px;
113 font-size: 10px;
114 }
115
116 #backbutton
117 {
118 margin-top: 10px;
119 text-align: center;
120 }
121
122 /* ################################################################### */
123 /* Flip insturments */
124
125 .flip
126 {
127 position: absolute;
128 top: 170px;
129 left: 155px;
130 width: 13px;
131 height: 13px;
132 }
133
134 #flip
135 {
136 opacity: 0;
137 background: url(file:///System/Library/WidgetResources/ibutton/white_i.png) no-repeat top left;
138 z-index: 8000;
139 }
140
141 #fliprollie
142 {
143 display: none;
144 opacity: 0.25;
145 background: url(file:///System/Library/WidgetResources/ibutton/white_rollie.png) no-repeat top left;
146 z-index: 7999;
147 }
148
149 #front
150 {
151 display: block;
152 }
153
154 #back
155 {
156 display: none;
157 }
158
159 .doneButton
160 {
161 position: absolute;
162 bottom: 10px;
163 left: 10px;
164 }