File: properties.css

package info (click to toggle)
python-lesscpy 0.15.1-0.2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,488 kB
  • sloc: python: 3,591; sh: 5; makefile: 4
file content (52 lines) | stat: -rw-r--r-- 823 bytes parent folder | download | duplicates (5)
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
50
51
52
div.properties {
	color: red;
}
div.empty {
	margin: ;
}
div.important {
	color: red !important;
	width: 100% !important;
	height: 20px !important;
}
div.annoying_font_property {
	font: 12px/16px Arial;
	font: 100%/16px Arial;
	font: normal small/20px 'Trebuchet MS', Verdana, sans-serif;
}
div.shorthands {
	border: 1px solid #000000;
	margin: 1px 0;
	padding: 0 auto;
	padding: 1px 0 2px 0;
	margin: 0;
	padding: -1px -0 -2px -0;
}
table {
	counter-reset: group;
}
tbody {
	counter-increment: group;
	counter-reset: row;
}
tbody tr {
	counter-increment: row;
}
tbody td:first-child:before {
	content: counter(group,upper-latin)"."counter(row);
}
.escape\|random\|char {
	color: red;
}
.mixin\!tUp {
	font-weight: bold;
}
.trailingTest\+ {
	color: red;
}
.sr-only {
	clip: rect(0 0 0 0);
}
.font-madness {
	font: 0/0 a;
}