mirror of https://github.com/Kozea/pygal.git
Python to generate nice looking SVG graph
http://pygal.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
1.2 KiB
78 lines
1.2 KiB
/* |
|
$Id$ |
|
|
|
default fill styles for multiple datasets (probably only use a single |
|
dataset on this graph though) |
|
*/ |
|
.key1,.fill1{ |
|
fill: #ff0000; |
|
fill-opacity: 0.5; |
|
stroke: none; |
|
stroke-width: 0.5px; |
|
} |
|
.key2,.fill2{ |
|
fill: #0000ff; |
|
fill-opacity: 0.5; |
|
stroke: none; |
|
stroke-width: 1px; |
|
} |
|
.key3,.fill3{ |
|
fill: #00ff00; |
|
fill-opacity: 0.5; |
|
stroke: none; |
|
stroke-width: 1px; |
|
} |
|
.key4,.fill4{ |
|
fill: #ffcc00; |
|
fill-opacity: 0.5; |
|
stroke: none; |
|
stroke-width: 1px; |
|
} |
|
.key5,.fill5{ |
|
fill: #00ccff; |
|
fill-opacity: 0.5; |
|
stroke: none; |
|
stroke-width: 1px; |
|
} |
|
.key6,.fill6{ |
|
fill: #ff00ff; |
|
fill-opacity: 0.5; |
|
stroke: none; |
|
stroke-width: 1px; |
|
} |
|
.key7,.fill7{ |
|
fill: #00ffff; |
|
fill-opacity: 0.5; |
|
stroke: none; |
|
stroke-width: 1px; |
|
} |
|
.key8,.fill8{ |
|
fill: #ffff00; |
|
fill-opacity: 0.5; |
|
stroke: none; |
|
stroke-width: 1px; |
|
} |
|
.key9,.fill9{ |
|
fill: #cc6666; |
|
fill-opacity: 0.5; |
|
stroke: none; |
|
stroke-width: 1px; |
|
} |
|
.key10,.fill10{ |
|
fill: #663399; |
|
fill-opacity: 0.5; |
|
stroke: none; |
|
stroke-width: 1px; |
|
} |
|
.key11,.fill11{ |
|
fill: #339900; |
|
fill-opacity: 0.5; |
|
stroke: none; |
|
stroke-width: 1px; |
|
} |
|
.key12,.fill12{ |
|
fill: #9966FF; |
|
fill-opacity: 0.5; |
|
stroke: none; |
|
stroke-width: 1px; |
|
}
|
|
|