-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcorners.css
45 lines (44 loc) · 825 Bytes
/
corners.css
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
.boxc {
padding:0px;
position:relative;
}
.boxc b.cn {
height:10px;
position:absolute;
width:10px;
}
.boxc b.tl {
background:transparent url(images/roundgray.png) no-repeat scroll 0%;
background-position:left top;
left:-1px;
top:-1px;
}
.boxc b.tr {
background:transparent url(images/roundgray.png) no-repeat scroll 0%;
background-position:right top;
right:-1px;
top:-1px;
}
.boxc b.bl {
background:transparent url(images/roundwhite.png) no-repeat scroll 0%;
background-position:left bottom;
bottom:-1px;
left:-1px;
}
.boxc b.br {
background:transparent url(images/roundwhite.png) no-repeat scroll 0%;
background-position:right bottom;
bottom:-1px;
right:-1px;
}
* html .boxc b.bl {
bottom:-2px;
}
* html .boxc b.br {
bottom:-2px;
}
* html .boxc b.cn {
background-image:url(roundwhite.gif);
font-size:1px;
line-height:1px;
}