apexcharter/docs/articles/chart-options_files/apexcharter-css-0.1.0/apexcharter.css

74 lines
1.4 KiB
CSS
Raw Normal View History

2020-06-13 13:06:58 +02:00
/* Spark box styles */
.apexcharter-spark-box {
border-radius: 0.5rem;
margin-bottom: 10px;
box-shadow: 0 1px 28px -12px #3B4252;
}
2021-01-06 10:49:04 +01:00
.apexcharter-grid-container > div {
2020-12-15 11:14:28 +01:00
min-width: 0;
}
2021-01-06 10:49:04 +01:00
.apexcharter-facet-col-label {
2021-01-08 15:51:12 +01:00
background:#E6E6E6;
2021-01-06 10:49:04 +01:00
text-align: center;
2021-01-08 15:51:12 +01:00
font-weight: bold;
2021-01-06 10:49:04 +01:00
line-height: 30px;
}
.apexcharter-facet-row-label {
2021-01-08 15:51:12 +01:00
background:#E6E6E6;
text-align: center;
2021-01-06 10:49:04 +01:00
font-weight: bold;
2021-01-08 15:51:12 +01:00
writing-mode: vertical-rl;
text-orientation: mixed;
line-height: 30px;
}
.apexcharter-facet-subtitle {
font-family: Helvetica, Arial, sans-serif;
margin-bottom: 5px;
}
.apexcharter-facet-title {
font-family: Helvetica, Arial, sans-serif;
margin-bottom: 5px;
}
.apexcharter-facet-yaxis-title {
font-family: Helvetica, Arial, sans-serif;
text-align: center;
2021-01-06 10:49:04 +01:00
writing-mode: vertical-rl;
2021-01-08 15:51:12 +01:00
text-orientation: mixed;
2021-01-06 10:49:04 +01:00
line-height: 30px;
2021-01-08 15:51:12 +01:00
height: 100%;
}
.apexcharter-facet-xaxis-title {
font-family: Helvetica, Arial, sans-serif;
text-align: center;
line-height: 30px;
width: 100%;
2021-01-06 10:49:04 +01:00
}
2021-01-08 15:51:12 +01:00
.apexcharter-facet-rotate180 {
transform: rotate(180deg);
/* Legacy vendor prefixes that you probably don't need... */
/* Safari */
-webkit-transform: rotate(180deg);
/* Firefox */
-moz-transform: rotate(180deg);
/* IE */
-ms-transform: rotate(180deg);
/* Opera */
-o-transform: rotate(180deg);
/* Internet Explorer */
/*filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);*/
}