blob: d7165e18fe97bdaf32011a74a2e6d537f52f3540 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
* {
engine: none;
background-image: none;
padding: 0;
border-radius: 0;
border-width: 0;
border-style: none;
border-image: none;
border-image-width: 0;
background-color: rgba(0,0,0,0);
}
#no-repeat {
background-image: url("border-image-ball-red.png");
background-repeat: no-repeat;
}
#repeat {
background-image: url("border-image-ball-green.png");
background-repeat: repeat;
}
#default {
background-image: url("green-20x20.png");
}
#default-ref {
background-image: none;
background-color: lime;
}
|