Skip to content

Commit

Permalink
Update custom.css
Browse files Browse the repository at this point in the history
* Modify font family
* Modify table style
  • Loading branch information
renakim committed Aug 3, 2023
1 parent 5da08d5 commit e3acac5
Showing 1 changed file with 21 additions and 5 deletions.
26 changes: 21 additions & 5 deletions src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@
--ifm-color-primary-lighter: rgb(102, 212, 189);
--ifm-color-primary-lightest: rgb(146, 224, 208);
--ifm-code-font-size: 95%;
--ifm-font-family-base: "Noto Sans KR", "Spoqa Han Sans Neo", "Inter", system-ui, -apple-system, Segoe UI, Roboto,
Ubuntu, Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont, "Segoe UI",
Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
"Segoe UI Symbol";
--ifm-heading-font-family: "Noto Sans KR", "Spoqa Han Sans Neo", "Inter", system-ui, -apple-system, Segoe UI, Roboto,
Ubuntu, Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont, "Segoe UI",
Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
"Segoe UI Symbol";
}

.docusaurus-highlight-code-line {
Expand Down Expand Up @@ -57,11 +65,9 @@ html[data-theme='dark'] .DocSearch {
--docsearch-hit-background: var(--ifm-color-emphasis-100);
/* Footer */
--docsearch-footer-background: var(--ifm-background-surface-color);
--docsearch-key-gradient: linear-gradient(
-26.5deg,
var(--ifm-color-emphasis-200) 0%,
var(--ifm-color-emphasis-100) 100%
);
--docsearch-key-gradient: linear-gradient(-26.5deg,
var(--ifm-color-emphasis-200) 0%,
var(--ifm-color-emphasis-100) 100%);
}

div[class^='announcementBar_'] {
Expand Down Expand Up @@ -179,3 +185,13 @@ html[data-theme="dark"] .rlc-container {
html[data-theme="dark"] .rlc-description {
color: #aaa;
}

.markdown table {
font-size: 0.9em;
width: 100%;
}

.markdown table th,
.markdown table td {
padding: 8px;
}

0 comments on commit e3acac5

Please sign in to comment.