File: roundedcorners.css

package info (click to toggle)
ojs 2.2.4%2Bdfsg2-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 40,820 kB
  • ctags: 25,186
  • sloc: xml: 131,068; php: 87,237; sh: 75; makefile: 27
file content (49 lines) | stat: -rw-r--r-- 646 bytes parent folder | download
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
46
47
48
49
/**
	Based on Nifty Corners
	These styles allow for rounded corners purely with CSS.  No images and no JS.
*/

span.rtop, span.rbottom {
	display:block;
	background: #FBFBF3
}

span.rtop span, span.rbottom span {
	display:block;
	height: 1px;
	overflow: hidden; 
	background: #ABA;
}

span.r1 {
	margin: 0 5px;
}

span.r2 {
	margin: 0 3px;
}

span.r3 {
	margin: 0 2px;
}

span.rtop span.r4, span.rbottom span.r4 {
	margin: 0 1px;
	height: 2px;
}

#sidebar div.block {
	background: #ABA;
	padding-bottom: 0;	
	margin-bottom: 1.5em;
	
}

div.roundedCorner {
	padding-left: 1em;
}

/* Used to flag already-rounded corners */
div.alreadyRounded {
}