front-end-interview-handbook/website/src/css/custom.css

93 lines
2.1 KiB
CSS
Executable File

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&display=swap');
:root {
--ifm-color-primary: #d62b79;
--ifm-color-primary-dark: #c2256d;
--ifm-color-primary-darker: #b72367;
--ifm-color-primary-darkest: #971d55;
--ifm-color-primary-light: #da4187;
--ifm-color-primary-lighter: #dc4b8d;
--ifm-color-primary-lightest: #e26ca2;
--ifm-font-family-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans',
'Helvetica Neue', sans-serif;
}
html[data-theme='dark'] {
--ifm-color-primary: #ffa700;
--ifm-color-primary-dark: #e69600;
--ifm-color-primary-darker: #d98e00;
--ifm-color-primary-darkest: #b37500;
--ifm-color-primary-light: #ffb01a;
--ifm-color-primary-lighter: #ffb426;
--ifm-color-primary-lightest: #ffc14d;
}
@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);
font-weight: bold;
}
.navbar__item.dropdown.dropdown--hoverable {
flex-shrink: 0;
}
.navbar-icon:before {
background-repeat: no-repeat;
content: '';
display: flex;
height: 24px;
width: 24px;
transition: all 300ms ease-in-out;
}
.navbar-icon:hover {
opacity: 0.6;
}
.navbar-icon-github:before {
background-image: url('/img/icons8-github.svg');
}
html[data-theme='dark'] .navbar-icon-github:before {
background-image: url('/img/icons8-github-light.svg');
height: 28px;
width: 28px;
}
.navbar-icon-twitter:before {
background-image: url('/img/icons8-twitter.svg');
}
html[data-theme='dark'] .navbar-icon-twitter:before {
background-image: url('/img/icons8-twitter-light.svg');
}
.navbar-icon-facebook:before {
background-image: url('/img/icons8-facebook.svg');
}
html[data-theme='dark'] .navbar-icon-facebook:before {
background-image: url('/img/icons8-facebook-light.svg');
height: 28px;
width: 28px;
}