Add aspect type classes to CSS

This commit is contained in:
Gergely Polonkai 2014-08-30 18:25:50 +02:00
parent 5c9f88326b
commit b290dbc3f1
1 changed files with 53 additions and 1 deletions

View File

@ -74,5 +74,57 @@ path.planet-symbol {
line.aspect {
stroke-width: 1;
stroke: #000000;
stroke-dasharray: 20,10;
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;
}