File: svg.less

package info (click to toggle)
python-lesscpy 0.13.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,436 kB
  • sloc: python: 3,572; sh: 20; makefile: 8
file content (38 lines) | stat: -rw-r--r-- 718 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
svg {color: red;}

circle { 
    stroke: #006600; 
    fill:   #00cc00; 
}
circle .green { 
    stroke: #006600; 
    stroke-width: 9;
    fill: #00cc00;
}
rect {
    fill: blue;
    fill-opacity: 0.1;
    stroke: green;
    opacity: 0.5;
}
ellipse { fill: yellow; }
line { stroke: red; }
path { stroke: blue; }
polygon { 
    fill: lime;
    fill-rule: nonzero;
}
polygon { 
    fill: lime;
    fill-rule: evenodd;
}
polyline { fill: none; }

.node text { font: 12px sans-serif; }
tref { font-weight: bold; }
text tref { font-weight: bold; }
tspan { font-weight: bold; }
text tspan { font-weight: bold; }
textPath { font-weight: bold; } 
text textPath { font-weight: bold; } 
svg text textPath { font-weight: bold; }