Files
psychartherapie-v2/styles/_styles.scss

67 lines
1.5 KiB
SCSS

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');
@import "header";
@import "anchoring";
@import "carousel";
@import "image";
@import "title-block";
@import "footer";
@tailwind base;
@tailwind components;
@tailwind utilities;
html {
--body-BackgroundColor: #f5f5f5;
--primaryColor: #124498;
--header-BackgroundColor: var(--primaryColor);
--header-textColor: #ffd39c;
--header-Height: 5.375rem;
--default-link-color: #d8ac74;
scroll-padding-top: var(--header-Height);
}
// TODO: Try to do this in a better way if possible
.prose :where(p:first-of-type):not(:where([class~="not-prose"] *)) {
font-size: initial;
}
.container-large {
max-width: 75rem;
}
.default-text-color {
color: var(--primaryColor);
--tw-prose-bold: var(--primaryColor);
--tw-prose-headings: var(--primaryColor)
}
.default-paragraph-style {
color: var(--primaryColor);
--tw-prose-links: var(--default-link-color);
--tw-prose-headings: var(--primaryColor);
--tw-prose-bold: var(--primaryColor);
--tw-prose-bullets: var(--primaryColor);
li > div {
margin: 0;
}
h1 {
color: var(--primaryColor);
font-size: 2.5rem;
}
h2 {
color: var(--primaryColor);
font-size: 1.75rem;
}
}
.font {
font-family: 'Questrial', sans-serif;
}
body {
font-family: 'Questrial', sans-serif;
background-color: var(--body-BackgroundColor);
}