Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / synnefo / ui / new_ui / ui / stylesheets / farbtastic.css @ e4a6c3b8

History | View | Annotate | Download (1.4 kB)

1
/**
2
 * Farbtastic Color Picker 1.2
3
 * © 2008 Steven Wittens
4
 *
5
 * This program is free software; you can redistribute it and/or modify
6
 * it under the terms of the GNU General Public License as published by
7
 * the Free Software Foundation; either version 2 of the License, or
8
 * (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
18
 */
19

    
20
.farbtastic {
21
  position: relative;
22
}
23
.farbtastic * {
24
  position: absolute;
25
  cursor: crosshair;
26
}
27
.farbtastic, .farbtastic .wheel {
28
  width: 195px;
29
  height: 195px;
30
}
31
.farbtastic .color, .farbtastic .overlay {
32
  top: 47px;
33
  left: 47px;
34
  width: 101px;
35
  height: 101px;
36
}
37
.farbtastic .wheel {
38
  background: url(../images/wheel.png) no-repeat;
39
  width: 195px;
40
  height: 195px;
41
}
42
.farbtastic .overlay {
43
  background: url(../images/mask.png) no-repeat;
44
}
45
.farbtastic .marker {
46
  width: 17px;
47
  height: 17px;
48
  margin: -8px 0 0 -8px;
49
  overflow: hidden; 
50
  background: url(../images/marker.png) no-repeat;
51
}
52