Theme Inspinia
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.

chartist.min.css 14KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773
  1. .ct-label {
  2. fill: rgba(0, 0, 0, 0.4);
  3. color: rgba(0, 0, 0, 0.4);
  4. font-size: 1rem;
  5. line-height: 1;
  6. }
  7. .ct-chart-line .ct-label,
  8. .ct-chart-bar .ct-label {
  9. display: block;
  10. display: -webkit-box;
  11. display: -moz-box;
  12. display: -ms-flexbox;
  13. display: -webkit-flex;
  14. display: flex;
  15. }
  16. .ct-label.ct-horizontal.ct-start {
  17. -webkit-box-align: flex-end;
  18. -webkit-align-items: flex-end;
  19. -ms-flex-align: flex-end;
  20. align-items: flex-end;
  21. -webkit-box-pack: flex-start;
  22. -webkit-justify-content: flex-start;
  23. -ms-flex-pack: flex-start;
  24. justify-content: flex-start;
  25. text-align: left;
  26. text-anchor: start;
  27. }
  28. .ct-label.ct-horizontal.ct-end {
  29. -webkit-box-align: flex-start;
  30. -webkit-align-items: flex-start;
  31. -ms-flex-align: flex-start;
  32. align-items: flex-start;
  33. -webkit-box-pack: flex-start;
  34. -webkit-justify-content: flex-start;
  35. -ms-flex-pack: flex-start;
  36. justify-content: flex-start;
  37. text-align: left;
  38. text-anchor: start;
  39. }
  40. .ct-label.ct-vertical.ct-start {
  41. -webkit-box-align: flex-end;
  42. -webkit-align-items: flex-end;
  43. -ms-flex-align: flex-end;
  44. align-items: flex-end;
  45. -webkit-box-pack: flex-end;
  46. -webkit-justify-content: flex-end;
  47. -ms-flex-pack: flex-end;
  48. justify-content: flex-end;
  49. text-align: right;
  50. text-anchor: end;
  51. }
  52. .ct-label.ct-vertical.ct-end {
  53. -webkit-box-align: flex-end;
  54. -webkit-align-items: flex-end;
  55. -ms-flex-align: flex-end;
  56. align-items: flex-end;
  57. -webkit-box-pack: flex-start;
  58. -webkit-justify-content: flex-start;
  59. -ms-flex-pack: flex-start;
  60. justify-content: flex-start;
  61. text-align: left;
  62. text-anchor: start;
  63. }
  64. .ct-chart-bar .ct-label.ct-horizontal.ct-start {
  65. -webkit-box-align: flex-end;
  66. -webkit-align-items: flex-end;
  67. -ms-flex-align: flex-end;
  68. align-items: flex-end;
  69. -webkit-box-pack: center;
  70. -webkit-justify-content: center;
  71. -ms-flex-pack: center;
  72. justify-content: center;
  73. text-align: center;
  74. text-anchor: start;
  75. }
  76. .ct-chart-bar .ct-label.ct-horizontal.ct-end {
  77. -webkit-box-align: flex-start;
  78. -webkit-align-items: flex-start;
  79. -ms-flex-align: flex-start;
  80. align-items: flex-start;
  81. -webkit-box-pack: center;
  82. -webkit-justify-content: center;
  83. -ms-flex-pack: center;
  84. justify-content: center;
  85. text-align: center;
  86. text-anchor: start;
  87. }
  88. .ct-chart-bar.ct-horizontal-bars .ct-label.ct-horizontal.ct-start {
  89. -webkit-box-align: flex-end;
  90. -webkit-align-items: flex-end;
  91. -ms-flex-align: flex-end;
  92. align-items: flex-end;
  93. -webkit-box-pack: flex-start;
  94. -webkit-justify-content: flex-start;
  95. -ms-flex-pack: flex-start;
  96. justify-content: flex-start;
  97. text-align: left;
  98. text-anchor: start;
  99. }
  100. .ct-chart-bar.ct-horizontal-bars .ct-label.ct-horizontal.ct-end {
  101. -webkit-box-align: flex-start;
  102. -webkit-align-items: flex-start;
  103. -ms-flex-align: flex-start;
  104. align-items: flex-start;
  105. -webkit-box-pack: flex-start;
  106. -webkit-justify-content: flex-start;
  107. -ms-flex-pack: flex-start;
  108. justify-content: flex-start;
  109. text-align: left;
  110. text-anchor: start;
  111. }
  112. .ct-chart-bar.ct-horizontal-bars .ct-label.ct-vertical.ct-start {
  113. -webkit-box-align: center;
  114. -webkit-align-items: center;
  115. -ms-flex-align: center;
  116. align-items: center;
  117. -webkit-box-pack: flex-end;
  118. -webkit-justify-content: flex-end;
  119. -ms-flex-pack: flex-end;
  120. justify-content: flex-end;
  121. text-align: right;
  122. text-anchor: end;
  123. }
  124. .ct-chart-bar.ct-horizontal-bars .ct-label.ct-vertical.ct-end {
  125. -webkit-box-align: center;
  126. -webkit-align-items: center;
  127. -ms-flex-align: center;
  128. align-items: center;
  129. -webkit-box-pack: flex-start;
  130. -webkit-justify-content: flex-start;
  131. -ms-flex-pack: flex-start;
  132. justify-content: flex-start;
  133. text-align: left;
  134. text-anchor: end;
  135. }
  136. .ct-grid {
  137. stroke: rgba(0, 0, 0, 0.2);
  138. stroke-width: 1px;
  139. stroke-dasharray: 2px;
  140. }
  141. .ct-point {
  142. stroke-width: 10px;
  143. stroke-linecap: round;
  144. }
  145. .ct-line {
  146. fill: none;
  147. stroke-width: 4px;
  148. }
  149. .ct-area {
  150. stroke: none;
  151. fill-opacity: 0.1;
  152. }
  153. .ct-bar {
  154. fill: none;
  155. stroke-width: 10px;
  156. }
  157. .ct-slice-donut {
  158. fill: none;
  159. stroke-width: 60px;
  160. }
  161. .ct-series-a .ct-point, .ct-series-a .ct-line, .ct-series-a .ct-bar, .ct-series-a .ct-slice-donut {
  162. stroke: #1AB394;
  163. }
  164. .ct-series-a .ct-slice-pie, .ct-series-a .ct-area {
  165. fill: #1AB394;
  166. }
  167. .ct-series-b .ct-point, .ct-series-b .ct-line, .ct-series-b .ct-bar, .ct-series-b .ct-slice-donut {
  168. stroke: #79D2C0;
  169. }
  170. .ct-series-b .ct-slice-pie, .ct-series-b .ct-area {
  171. fill: #79D2C0;
  172. }
  173. .ct-series-c .ct-point, .ct-series-c .ct-line, .ct-series-c .ct-bar, .ct-series-c .ct-slice-donut {
  174. stroke: #D3D3D3;
  175. }
  176. .ct-series-c .ct-slice-pie, .ct-series-c .ct-area {
  177. fill: #D3D3D3;
  178. }
  179. .ct-series-d .ct-point, .ct-series-d .ct-line, .ct-series-d .ct-bar, .ct-series-d .ct-slice-donut {
  180. stroke: #BABABA;
  181. }
  182. .ct-series-d .ct-slice-pie, .ct-series-d .ct-area {
  183. fill: #BABABA;
  184. }
  185. .ct-series-e .ct-point, .ct-series-e .ct-line, .ct-series-e .ct-bar, .ct-series-e .ct-slice-donut {
  186. stroke: #453d3f;
  187. }
  188. .ct-series-e .ct-slice-pie, .ct-series-e .ct-area {
  189. fill: #453d3f;
  190. }
  191. .ct-series-f .ct-point, .ct-series-f .ct-line, .ct-series-f .ct-bar, .ct-series-f .ct-slice-donut {
  192. stroke: #59922b;
  193. }
  194. .ct-series-f .ct-slice-pie, .ct-series-f .ct-area {
  195. fill: #59922b;
  196. }
  197. .ct-series-g .ct-point, .ct-series-g .ct-line, .ct-series-g .ct-bar, .ct-series-g .ct-slice-donut {
  198. stroke: #0544d3;
  199. }
  200. .ct-series-g .ct-slice-pie, .ct-series-g .ct-area {
  201. fill: #0544d3;
  202. }
  203. .ct-series-h .ct-point, .ct-series-h .ct-line, .ct-series-h .ct-bar, .ct-series-h .ct-slice-donut {
  204. stroke: #6b0392;
  205. }
  206. .ct-series-h .ct-slice-pie, .ct-series-h .ct-area {
  207. fill: #6b0392;
  208. }
  209. .ct-series-i .ct-point, .ct-series-i .ct-line, .ct-series-i .ct-bar, .ct-series-i .ct-slice-donut {
  210. stroke: #f05b4f;
  211. }
  212. .ct-series-i .ct-slice-pie, .ct-series-i .ct-area {
  213. fill: #f05b4f;
  214. }
  215. .ct-series-j .ct-point, .ct-series-j .ct-line, .ct-series-j .ct-bar, .ct-series-j .ct-slice-donut {
  216. stroke: #dda458;
  217. }
  218. .ct-series-j .ct-slice-pie, .ct-series-j .ct-area {
  219. fill: #dda458;
  220. }
  221. .ct-series-k .ct-point, .ct-series-k .ct-line, .ct-series-k .ct-bar, .ct-series-k .ct-slice-donut {
  222. stroke: #eacf7d;
  223. }
  224. .ct-series-k .ct-slice-pie, .ct-series-k .ct-area {
  225. fill: #eacf7d;
  226. }
  227. .ct-series-l .ct-point, .ct-series-l .ct-line, .ct-series-l .ct-bar, .ct-series-l .ct-slice-donut {
  228. stroke: #86797d;
  229. }
  230. .ct-series-l .ct-slice-pie, .ct-series-l .ct-area {
  231. fill: #86797d;
  232. }
  233. .ct-series-m .ct-point, .ct-series-m .ct-line, .ct-series-m .ct-bar, .ct-series-m .ct-slice-donut {
  234. stroke: #b2c326;
  235. }
  236. .ct-series-m .ct-slice-pie, .ct-series-m .ct-area {
  237. fill: #b2c326;
  238. }
  239. .ct-series-n .ct-point, .ct-series-n .ct-line, .ct-series-n .ct-bar, .ct-series-n .ct-slice-donut {
  240. stroke: #6188e2;
  241. }
  242. .ct-series-n .ct-slice-pie, .ct-series-n .ct-area {
  243. fill: #6188e2;
  244. }
  245. .ct-series-o .ct-point, .ct-series-o .ct-line, .ct-series-o .ct-bar, .ct-series-o .ct-slice-donut {
  246. stroke: #a748ca;
  247. }
  248. .ct-series-o .ct-slice-pie, .ct-series-o .ct-area {
  249. fill: #a748ca;
  250. }
  251. .ct-square {
  252. display: block;
  253. position: relative;
  254. width: 100%;
  255. }
  256. .ct-square:before {
  257. display: block;
  258. float: left;
  259. content: "";
  260. width: 0;
  261. height: 0;
  262. padding-bottom: 100%;
  263. }
  264. .ct-square:after {
  265. content: "";
  266. display: table;
  267. clear: both;
  268. }
  269. .ct-square > svg {
  270. display: block;
  271. position: absolute;
  272. top: 0;
  273. left: 0;
  274. }
  275. .ct-minor-second {
  276. display: block;
  277. position: relative;
  278. width: 100%;
  279. }
  280. .ct-minor-second:before {
  281. display: block;
  282. float: left;
  283. content: "";
  284. width: 0;
  285. height: 0;
  286. padding-bottom: 93.75%;
  287. }
  288. .ct-minor-second:after {
  289. content: "";
  290. display: table;
  291. clear: both;
  292. }
  293. .ct-minor-second > svg {
  294. display: block;
  295. position: absolute;
  296. top: 0;
  297. left: 0;
  298. }
  299. .ct-major-second {
  300. display: block;
  301. position: relative;
  302. width: 100%;
  303. }
  304. .ct-major-second:before {
  305. display: block;
  306. float: left;
  307. content: "";
  308. width: 0;
  309. height: 0;
  310. padding-bottom: 88.88889%;
  311. }
  312. .ct-major-second:after {
  313. content: "";
  314. display: table;
  315. clear: both;
  316. }
  317. .ct-major-second > svg {
  318. display: block;
  319. position: absolute;
  320. top: 0;
  321. left: 0;
  322. }
  323. .ct-minor-third {
  324. display: block;
  325. position: relative;
  326. width: 100%;
  327. }
  328. .ct-minor-third:before {
  329. display: block;
  330. float: left;
  331. content: "";
  332. width: 0;
  333. height: 0;
  334. padding-bottom: 83.33333%;
  335. }
  336. .ct-minor-third:after {
  337. content: "";
  338. display: table;
  339. clear: both;
  340. }
  341. .ct-minor-third > svg {
  342. display: block;
  343. position: absolute;
  344. top: 0;
  345. left: 0;
  346. }
  347. .ct-major-third {
  348. display: block;
  349. position: relative;
  350. width: 100%;
  351. }
  352. .ct-major-third:before {
  353. display: block;
  354. float: left;
  355. content: "";
  356. width: 0;
  357. height: 0;
  358. padding-bottom: 80%;
  359. }
  360. .ct-major-third:after {
  361. content: "";
  362. display: table;
  363. clear: both;
  364. }
  365. .ct-major-third > svg {
  366. display: block;
  367. position: absolute;
  368. top: 0;
  369. left: 0;
  370. }
  371. .ct-perfect-fourth {
  372. display: block;
  373. position: relative;
  374. width: 100%;
  375. }
  376. .ct-perfect-fourth:before {
  377. display: block;
  378. float: left;
  379. content: "";
  380. width: 0;
  381. height: 0;
  382. padding-bottom: 75%;
  383. }
  384. .ct-perfect-fourth:after {
  385. content: "";
  386. display: table;
  387. clear: both;
  388. }
  389. .ct-perfect-fourth > svg {
  390. display: block;
  391. position: absolute;
  392. top: 0;
  393. left: 0;
  394. }
  395. .ct-perfect-fifth {
  396. display: block;
  397. position: relative;
  398. width: 100%;
  399. }
  400. .ct-perfect-fifth:before {
  401. display: block;
  402. float: left;
  403. content: "";
  404. width: 0;
  405. height: 0;
  406. padding-bottom: 66.66667%;
  407. }
  408. .ct-perfect-fifth:after {
  409. content: "";
  410. display: table;
  411. clear: both;
  412. }
  413. .ct-perfect-fifth > svg {
  414. display: block;
  415. position: absolute;
  416. top: 0;
  417. left: 0;
  418. }
  419. .ct-minor-sixth {
  420. display: block;
  421. position: relative;
  422. width: 100%;
  423. }
  424. .ct-minor-sixth:before {
  425. display: block;
  426. float: left;
  427. content: "";
  428. width: 0;
  429. height: 0;
  430. padding-bottom: 62.5%;
  431. }
  432. .ct-minor-sixth:after {
  433. content: "";
  434. display: table;
  435. clear: both;
  436. }
  437. .ct-minor-sixth > svg {
  438. display: block;
  439. position: absolute;
  440. top: 0;
  441. left: 0;
  442. }
  443. .ct-golden-section {
  444. display: block;
  445. position: relative;
  446. width: 100%;
  447. }
  448. .ct-golden-section:before {
  449. display: block;
  450. float: left;
  451. content: "";
  452. width: 0;
  453. height: 0;
  454. padding-bottom: 61.8047%;
  455. }
  456. .ct-golden-section:after {
  457. content: "";
  458. display: table;
  459. clear: both;
  460. }
  461. .ct-golden-section > svg {
  462. display: block;
  463. position: absolute;
  464. top: 0;
  465. left: 0;
  466. }
  467. .ct-major-sixth {
  468. display: block;
  469. position: relative;
  470. width: 100%;
  471. }
  472. .ct-major-sixth:before {
  473. display: block;
  474. float: left;
  475. content: "";
  476. width: 0;
  477. height: 0;
  478. padding-bottom: 60%;
  479. }
  480. .ct-major-sixth:after {
  481. content: "";
  482. display: table;
  483. clear: both;
  484. }
  485. .ct-major-sixth > svg {
  486. display: block;
  487. position: absolute;
  488. top: 0;
  489. left: 0;
  490. }
  491. .ct-minor-seventh {
  492. display: block;
  493. position: relative;
  494. width: 100%;
  495. }
  496. .ct-minor-seventh:before {
  497. display: block;
  498. float: left;
  499. content: "";
  500. width: 0;
  501. height: 0;
  502. padding-bottom: 56.25%;
  503. }
  504. .ct-minor-seventh:after {
  505. content: "";
  506. display: table;
  507. clear: both;
  508. }
  509. .ct-minor-seventh > svg {
  510. display: block;
  511. position: absolute;
  512. top: 0;
  513. left: 0;
  514. }
  515. .ct-major-seventh {
  516. display: block;
  517. position: relative;
  518. width: 100%;
  519. }
  520. .ct-major-seventh:before {
  521. display: block;
  522. float: left;
  523. content: "";
  524. width: 0;
  525. height: 0;
  526. padding-bottom: 53.33333%;
  527. }
  528. .ct-major-seventh:after {
  529. content: "";
  530. display: table;
  531. clear: both;
  532. }
  533. .ct-major-seventh > svg {
  534. display: block;
  535. position: absolute;
  536. top: 0;
  537. left: 0;
  538. }
  539. .ct-octave {
  540. display: block;
  541. position: relative;
  542. width: 100%;
  543. }
  544. .ct-octave:before {
  545. display: block;
  546. float: left;
  547. content: "";
  548. width: 0;
  549. height: 0;
  550. padding-bottom: 50%;
  551. }
  552. .ct-octave:after {
  553. content: "";
  554. display: table;
  555. clear: both;
  556. }
  557. .ct-octave > svg {
  558. display: block;
  559. position: absolute;
  560. top: 0;
  561. left: 0;
  562. }
  563. .ct-major-tenth {
  564. display: block;
  565. position: relative;
  566. width: 100%;
  567. }
  568. .ct-major-tenth:before {
  569. display: block;
  570. float: left;
  571. content: "";
  572. width: 0;
  573. height: 0;
  574. padding-bottom: 40%;
  575. }
  576. .ct-major-tenth:after {
  577. content: "";
  578. display: table;
  579. clear: both;
  580. }
  581. .ct-major-tenth > svg {
  582. display: block;
  583. position: absolute;
  584. top: 0;
  585. left: 0;
  586. }
  587. .ct-major-eleventh {
  588. display: block;
  589. position: relative;
  590. width: 100%;
  591. }
  592. .ct-major-eleventh:before {
  593. display: block;
  594. float: left;
  595. content: "";
  596. width: 0;
  597. height: 0;
  598. padding-bottom: 37.5%;
  599. }
  600. .ct-major-eleventh:after {
  601. content: "";
  602. display: table;
  603. clear: both;
  604. }
  605. .ct-major-eleventh > svg {
  606. display: block;
  607. position: absolute;
  608. top: 0;
  609. left: 0;
  610. }
  611. .ct-major-twelfth {
  612. display: block;
  613. position: relative;
  614. width: 100%;
  615. }
  616. .ct-major-twelfth:before {
  617. display: block;
  618. float: left;
  619. content: "";
  620. width: 0;
  621. height: 0;
  622. padding-bottom: 33.33333%;
  623. }
  624. .ct-major-twelfth:after {
  625. content: "";
  626. display: table;
  627. clear: both;
  628. }
  629. .ct-major-twelfth > svg {
  630. display: block;
  631. position: absolute;
  632. top: 0;
  633. left: 0;
  634. }
  635. .ct-double-octave {
  636. display: block;
  637. position: relative;
  638. width: 100%;
  639. }
  640. .ct-double-octave:before {
  641. display: block;
  642. float: left;
  643. content: "";
  644. width: 0;
  645. height: 0;
  646. padding-bottom: 25%;
  647. }
  648. .ct-double-octave:after {
  649. content: "";
  650. display: table;
  651. clear: both;
  652. }
  653. .ct-double-octave > svg {
  654. display: block;
  655. position: absolute;
  656. top: 0;
  657. left: 0;
  658. }