mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-23 18:02:18 +00:00
37 lines
503 B
CSS
37 lines
503 B
CSS
.box-inherit {
|
|
-moz-box-orient: inherit;
|
|
-moz-box-pack: inherit;
|
|
-moz-box-align: inherit;
|
|
-moz-box-direction: inherit;
|
|
}
|
|
|
|
/* Text shape */
|
|
|
|
.svg-shape-text {
|
|
font-weight: inherit;
|
|
font-style: inherit;
|
|
font-size: inherit;
|
|
font-family: inherit;
|
|
dominant-baseline: middle;
|
|
text-anchor: middle;
|
|
}
|
|
|
|
/* Rect shape */
|
|
|
|
.svg-shape-rect {
|
|
stroke-width: inherit;
|
|
}
|
|
|
|
/* Circle shape */
|
|
|
|
.svg-shape-circle {
|
|
stroke-width: inherit;
|
|
}
|
|
|
|
/* Ellipse shape */
|
|
|
|
.svg-shape-ellipse {
|
|
stroke-width: inherit;
|
|
}
|
|
|