123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- :root {
- --vp-code-block-bg: #f9fafb;
- /* --vp-code-block-bg: var(--vp-c-bg-alt); */
- --vp-code-line-highlight-color: rgba(0, 0, 0, 0.5);
- --vp-code-line-number-color: var(--vp-c-text-dark-3);
- --vp-code-copy-code-hover-bg: rgba(255, 255, 255, 0.05);
- --vp-code-copy-code-active-text: var(--vp-c-bg-alt);
- --demi-border-color: #ebedf1;
- }
- html, body, * {
- font-family: inherit;
- }
- .dark {
- --vp-code-block-bg: var(--vp-c-bg-alt);
- }
- .VPDocFooter {
- display: none;
- }
- .vp-doc [class*='language-'] pre code span {
- font-style: initial !important;
- }
- .vp-doc [class*='language-']:before {
- color: var(--vp-c-text-2);
- }
- @media (min-width: 640px) {
- .vp-doc div[class*='language-'] {
- border-radius: 4px;
- margin: 16px 0;
- }
- }
- @media (max-width: 639px) {
- .vp-doc div[class*='language-'] {
- border-radius: 4px;
- }
- }
- @media (min-width: 960px) {
- .VPContent .content {
- padding: 0 32px 32px;
- }
- }
- .vp-doc table:not([class*='el-table']) {
- display: table;
- width: 100%;
- font-size: 15px;
- }
- .vp-doc table:not([class*='el-table']) tr {
- border-top: 1px solid var(--demi-border-color);
- }
- .vp-doc table:not([class*='el-table']) tr:nth-child(2n) {
- background-color: unset;
- }
- .vp-doc table:not([class*='el-table']) th,
- .vp-doc table:not([class*='el-table']) td {
- border: 1px solid var(--demi-border-color);
- padding: 10px 20px;
- }
- .vp-doc table:not([class*='el-table']) th {
- font-size: 15px;
- font-weight: 600;
- background-color: var(--vp-c-white-soft);
- }
- .vp-doc table:not([class*='el-table']) td:first-child {
- font-size: 15px;
- font-weight: 600;
- }
- .vp-code-group .tabs {
- background-color: #292b30;
- }
- .vp-code-group .tabs label {
- color: rgba(235, 235, 245, .6);
- }
- .vp-code-group input:checked + label {
- color: white;
- }
- .vp-code-group input:checked + label:after {
- background-color: #10b981;
- }
- .vp-code-group .tabs:after {
- background-color: #000000;
- }
- .demo-bg-body .vitepress-demo .demo-slot {
- background-color: #F1F5F8;
- }
- .demo-platforms a {
- display: none !important;
- }
- @media (min-width: 1710px) {
- #app .Layout .VPSidebar{
- padding-left: 32px;
- width: var(--vp-sidebar-width);
- }
- #app .Layout .VPContent.has-sidebar{
- padding-right: 0;
- padding-left: var(--vp-sidebar-width);
- }
- #app .Layout .VPDoc.has-aside .content-container {
- max-width: inherit;
- }
- .VPDoc:not([class*='has-sidebar']) .container {
- max-width: inherit;
- }
- .VPDoc:not([class*='has-sidebar']) .container .content {
- max-width: inherit;
- }
- #app .Layout .VPNavBar.has-sidebar div.title{
- padding-left: 32px;
- width: var(--vp-sidebar-width);
- }
- #app .Layout .VPNavBar.has-sidebar .content{
- padding-right: 32px;
- padding-left: var(--vp-sidebar-width);
- }
- }
- .vp-doc ul[class*='el-pager'] {
- padding-left: initial;
- }
- .vp-doc table[class*='el-table'] {
- display: initial;
- border-collapse: separate;
- margin: initial;
- overflow-x: initial;
- }
- .vp-doc table[class*='el-table'] tr {
- border-top: none;
- transition: initial;
- }
- .vp-doc table[class*='el-table'] th {
- text-align: inherit;
- font-size: inherit;
- font-weight: inherit;
- color: inherit;
- background-color: var(--el-table-header-bg-color);
- }
- .VPNavBar.has-sidebar .curtain {
- display: none;
- }
|