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.
tech-interview-handbook/website/src/css/custom.css

51 lines
1.3 KiB

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&display=swap');
:root {
--ifm-color-primary: #6565d5;
--ifm-color-primary-dark: #5959d2;
--ifm-color-primary-darker: #4c4cce;
--ifm-color-primary-darkest: #4040cb;
--ifm-color-primary-light: #7e7edc;
--ifm-color-primary-lighter: #8a8adf;
--ifm-color-primary-lightest: #afafe9;
--ifm-font-family-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans',
'Helvetica Neue', sans-serif;
--ifm-font-size-base: 16px;
}
html[data-theme='dark'] {
--ifm-color-primary: #7f7ff0;
--ifm-color-primary-dark: rgb(114, 114, 216);
--ifm-color-primary-darker: rgb(108, 108, 204);
--ifm-color-primary-darkest: rgb(89, 89, 168);
--ifm-color-primary-light: rgb(146, 146, 242);
--ifm-color-primary-lighter: rgb(165, 165, 245);
--ifm-color-primary-lightest: rgb(191, 191, 248);
}
@media screen and (max-width: 767px) {
:root {
--ifm-font-size-base: 16px;
}
.markdown h1 {
--ifm-h1-font-size: 1.5rem;
}
.markdown h2 {
--ifm-h2-font-size: 1.375rem;
}
.markdown h3 {
--ifm-h3-font-size: 1.25rem;
}
}
div[class^='announcementBar_'] {
background-color: var(--ifm-color-primary);
color: #fff;
font-weight: bold;
}