blob: 4ae3bf9a93f2c0ac0fe5112e6a46bc3a3fd83575 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
@import "reset-to-defaults.css";
#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;
}
|