blob: 6ac21f2c94371cfc99de68b27eb92bb137a5066f (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
body {
color: "hello world";
num-basic: 5.1666666666667;
num-floor: 5px;
num-ceil: 6px;
num2: 0.66666666666667;
num2-round: 1;
num2-floor: 0;
num2-ceil: 1;
round-lit: 3px;
rgba1: #ff112233;
rgba2: #992c3742;
argb: #992c3742;
}
format {
format: "rgb(32, 128, 64)";
format-string: "hello world";
format-multiple: "hello earth 2";
format-url-encode: 'red is %A';
eformat: rgb(32, 128, 64);
}
#functions {
str1: true;
str2: false;
num1: true;
num2: true;
num3: true;
num4: false;
col1: true;
col2: false;
col3: true;
col4: true;
key1: true;
key2: false;
px1: true;
px2: false;
per1: true;
per2: false;
em1: true;
em2: false;
ex1: 2;
ex2: 1;
ex3: extract(1,1);
ex4: 2;
pow: 16;
pi: 3.1415926535898;
mod: 4;
tan: 1.5574077246549;
cos: 0.54030230586814;
sin: 0.8414709848079;
atan: 0.78539816339745rad;
acos: 0rad;
asin: 1.5707963267949rad;
sqrt: 2.8284271247462;
}
#unit {
unit-lit: 10;
unit-arg: 10s;
unit-arg2: 10em;
unit-math: 7.407%;
}
|