summaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/automatic/css/basic_arithmetics.css
blob: 9fd33f2efeba9beec960fb1851b0484e1549917c (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
31
.foo {
    font: 10px / 8px;
    font: 5px;
   	margin-left: 9px;
}

.foo {
	size: 1;	
}

.foo {
	bar: 8;
	bar: 8;
	bar: 12;
}

.foo {
    bar: 2 3;
    bar: 5;
    bar: 5;
}

.foo {
	bar: 2 -3;
	bar: -1;
	bar: -1;
}

.foo {
	bar: 14;
}