| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206 |
- /**
- * GitStats - default style
- */
-
- dt {
- font-weight: bold;
- float: left;
- margin-right: 1em;
- }
-
- dt:after {
- content: ": ";
- }
-
- dd {
- display: block;
- clear: left;
- }
-
- table {
- border: 1px solid black;
- border-collapse: collapse;
- font-size: 80%;
- margin-bottom: 1em;
- }
-
- table.noborders {
- border: none;
- }
-
- table.noborders td {
- border: none;
- }
-
- .vtable {
- float: right;
- clear: both;
- }
-
- table.tags td {
- vertical-align: top;
- }
-
- td {
- background-color: white;
- }
-
- th {
- background-color: #ddf;
- }
-
- th a {
- text-decoration: none;
- }
-
- tr:hover {
- background-color: #ddf;
- }
-
- td {
- border: 1px solid black;
- padding: 0.2em;
- padding-left: 0.3em;
- padding-right: 0.2em;
- }
-
- /* Navigation bar; tabbed style */
- /* .nav {
- border-bottom: 1px solid black;
- padding: 0.3em;
- }
-
- .nav ul {
- list-style-type: none;
- display: inline;
- margin: 0;
- padding: 0;
- }
-
- .nav li {
- display: inline;
- }
-
- .nav li a {
- padding: 0.3em;
- text-decoration: none;
- color: black;
- border: 1px solid black;
- margin: 0.5em;
- background-color: #ddf;
- }
-
- .nav li a:hover {
- background-color: #ddd;
- border-bottom: 1px solid #ddf;
- } */
-
- main img {
- border: 1px solid black;
- padding: 0.5em;
- background-color: white;
- }
-
- th img {
- border: 0px;
- padding: 0px;
- background-color: #ddf;
- }
-
- h1 a,
- h2 a {
- color: black;
- text-decoration: none;
- }
-
- main h1:hover a:after,
- main h2:hover a:after {
- content: "¶";
- color: #555;
- }
-
- main h1 {
- font-size: x-large;
- }
-
- main h2 {
- background-color: #564;
- border: 1px solid black;
- padding-left: 0.5em;
- padding-right: 0.5em;
- color: white;
- font-size: large;
- clear: both;
- }
-
- main h2 a {
- color: white;
- }
-
- main .moreauthors {
- font-size: 80%;
- }
-
- .dark .apexcharts-canvas .apexcharts-legend-text {
- color: #aeb7c0 !important;
- }
- .apexcharts-canvas .apexcharts-legend-text {
- color: #64748b !important;
- }
-
- .dark .apexcharts-canvas .apexcharts-text {
- fill: #aeb7c0 !important;
- }
-
- .apexcharts-canvas .apexcharts-text {
- fill: #64748b !important;
- }
-
- .dark .apexcharts-canvas .apexcharts-xcrosshairs {
- fill: #2e3a47 !important;
- }
- .apexcharts-canvas .apexcharts-xcrosshairs {
- fill: #e2e8f0 !important;
- }
-
-
- .dark .apexcharts-canvas .apexcharts-gridline {
- stroke: #2e3a47 !important;
- }
- .apexcharts-canvas .apexcharts-gridline {
- stroke: #e2e8f0 !important;
- }
-
- .dark .apexcharts-canvas .apexcharts-series.apexcharts-pie-series path {
- stroke: transparent !important;
- }
-
- .apexcharts-canvas .apexcharts-legend-series {
- display: inline-flex;
- gap: 0.375rem
- }
-
- /*
- .apexcharts-tooltip.apexcharts-theme-light {
- @apply dark:!border-strokedark dark:!bg-boxdark;
- }
- .apexcharts-tooltip.apexcharts-theme-light .apexcharts-tooltip-title {
- @apply dark:!border-strokedark dark:!bg-meta-4;
- }
- .apexcharts-xaxistooltip,
- .apexcharts-yaxistooltip {
- @apply dark:!border-meta-4 dark:!bg-meta-4 dark:!text-bodydark1;
- }
- .apexcharts-xaxistooltip-bottom:after {
- @apply !border-b-gray dark:!border-b-meta-4;
- }
- .apexcharts-xaxistooltip-bottom:before {
- @apply !border-b-gray dark:!border-b-meta-4;
- }
- .apexcharts-xaxistooltip-bottom {
- @apply !rounded !border-none !bg-gray !text-xs !font-medium !text-black dark:!text-white;
- }
- .apexcharts-tooltip-series-group {
- @apply !pl-1.5;
- }
- */
|