astrognome/src/resources/ui/chart-default.css
Gergely Polonkai 4ecef146c2 Update chart XSL
• Move planet group (<g>) creation to a template
• Add planet-X class to all aspect and antiscia lines so they can be hidden
  later one by one
• Move houses to their separate group
• Chart base is now a separate group, as it was intended
• Move from value_name to value_nick. It's shorter and makes using the
  substring function obsolete
• Antiscion lines got their own class
• Move away from visibility to display attribute. visibility in SVG can
  can be overridden, thus switching between aspects and antiscia cannot
  be done if the future display themes tamper with the lines’ visibility
  style
2014-09-13 01:05:08 +02:00

137 lines
1.8 KiB
CSS

circle.thick {
fill: none;
stroke-width: 2.5;
stroke: #0000cc;
}
circle.thin {
fill: none;
stroke-width: 1;
stroke: #0000cc;
}
line.degree-thick {
stroke-width: 2;
stroke: #0000cc;
}
line.degree-thin {
stroke-width: 1;
stroke: #0000cc;
}
line.house-cusp {
stroke-width: 1;
stroke: #0000cc;
}
.sign {
stroke-width: 2;
stroke-linecap: butt;
stroke-linejoin: bevel;
}
.sign-fire {
fill: none;
stroke: #cc2222;
}
.sign-earth {
fill: none;
stroke: #22cc22;
}
.sign-air {
fill: none;
stroke: #cccc22;
}
.sign-water {
fill: none;
stroke: #2222cc;
}
line.axis {
stroke-width: 3;
stroke: #000000;
}
line.axis-end {
marker-start: url(#arrow_end);
}
line.planet-marker {
stroke-width: 1.5;
stroke: #555555;
}
.planet-symbol {
stroke-width: 2;
fill: none;
stroke: #000080;
}
line.aspect {
stroke-width: 1;
stroke: #000000;
stroke-dasharray: 1,2;
}
line.aspect-conjuction {
stroke-width: 5;
stroke: #00cc00;
stroke-opacity: 0.5;
}
line.aspect-sextile {
stroke-width: 1
stroke: #00cc00;
stroke-dasharray: none;
}
line.aspect-square {
stroke: #c00000;
stroke-dasharray: none;
}
line.aspect-trine {
stroke: #000080;
stroke-dasharray: none;
}
line.aspect-opposition {
stroke: #c00000;
stroke-dasharray: 5,5;
}
line.aspect-semisextile {
stroke: #00cc00;
}
line.aspect-semisquare {
stroke: #cc0000;
stroke-dasharray: 9,3;
}
line.aspect-quintile {
stroke: #00cc00;
stroke-dasharray: 9,3;
}
line.aspect-sesquisquare {
}
line.aspect-biquintile {
stroke: #00cc00;
}
line.aspect-quincunx {
stroke: #cc0000;
}
line.antiscion {
stroke-width: 1;
stroke: #000000;
stroke-dasharray: 20,10;
}