Files
notesnook/apps/monograph/app/root.css

90 lines
2.2 KiB
CSS
Raw Permalink Normal View History

2025-12-30 10:04:27 +05:00
2024-10-01 16:19:34 +05:00
@font-face {
2025-12-30 10:04:27 +05:00
font-family: "Inter";
2024-10-01 16:19:34 +05:00
font-style: normal;
2025-12-30 10:04:27 +05:00
font-display: swap;
2024-10-01 16:19:34 +05:00
font-weight: 400;
2025-12-30 10:04:27 +05:00
src: local(""), url("./assets/fonts/Inter-Regular.woff2") format("woff2"),
url("./assets/fonts/Inter-Regular.ttf") format("truetype");
2024-10-01 16:19:34 +05:00
}
2025-12-30 10:04:27 +05:00
2024-10-01 16:19:34 +05:00
@font-face {
2025-12-30 10:04:27 +05:00
font-family: "Inter";
2024-10-01 16:19:34 +05:00
font-style: normal;
2025-12-30 10:04:27 +05:00
font-display: swap;
2024-10-01 16:19:34 +05:00
font-weight: 600;
2025-12-30 10:04:27 +05:00
src: local(""), url("./assets/fonts/Inter-SemiBold.woff2") format("woff2"),
url("./assets/fonts/Inter-SemiBold.ttf") format("truetype");
2024-10-01 16:19:34 +05:00
}
2025-12-30 10:04:27 +05:00
2024-10-01 16:19:34 +05:00
@font-face {
2025-12-30 10:04:27 +05:00
font-family: "Inter";
2024-10-01 16:19:34 +05:00
font-style: normal;
2025-12-30 10:04:27 +05:00
font-display: swap;
2024-10-01 16:19:34 +05:00
font-weight: 700;
2025-12-30 10:04:27 +05:00
src: local(""), url("./assets/fonts/Inter-Bold.woff2") format("woff2"),
url("./assets/fonts/Inter-Bold.ttf") format("truetype");
2024-10-01 16:19:34 +05:00
}
2025-12-30 10:04:27 +05:00
2024-10-01 16:19:34 +05:00
@font-face {
2025-12-30 10:04:27 +05:00
font-family: "Inter";
font-style: normal;
font-display: swap;
font-weight: 500;
src: local(""), url("./assets/fonts/Inter-Medium.woff2") format("woff2"),
url("./assets/fonts/Inter-Medium.ttf") format("truetype");
}
@font-face {
font-family: "Inter";
2024-10-01 16:19:34 +05:00
font-style: italic;
2025-12-30 10:04:27 +05:00
font-display: swap;
2024-10-01 16:19:34 +05:00
font-weight: 400;
2025-12-30 10:04:27 +05:00
src: local(""), url("./assets/fonts/Inter-Italic.woff2") format("woff2"),
url("./assets/fonts/Inter-Italic.ttf") format("truetype");
2024-10-01 16:19:34 +05:00
}
2025-12-30 10:04:27 +05:00
2024-10-01 16:19:34 +05:00
@font-face {
2025-12-30 10:04:27 +05:00
font-family: "Inter";
2024-10-01 16:19:34 +05:00
font-style: italic;
2025-12-30 10:04:27 +05:00
font-display: swap;
2024-10-01 16:19:34 +05:00
font-weight: 600;
src: local(""),
2025-12-30 10:04:27 +05:00
url("./assets/fonts/Inter-SemiBoldItalic.woff2") format("woff2"),
url("./assets/fonts/Inter-SemiBoldItalic.ttf") format("truetype");
2024-10-01 16:19:34 +05:00
}
2025-12-30 10:04:27 +05:00
2024-10-01 16:19:34 +05:00
@font-face {
2025-12-30 10:04:27 +05:00
font-family: "Inter";
2024-10-01 16:19:34 +05:00
font-style: italic;
2025-12-30 10:04:27 +05:00
font-display: swap;
2024-10-01 16:19:34 +05:00
font-weight: 700;
2025-12-30 10:04:27 +05:00
src: local(""), url("./assets/fonts/Inter-BoldItalic.woff2") format("woff2"),
url("./assets/fonts/Inter-BoldItalic.ttf") format("truetype");
}
@font-face {
font-family: "Inter";
font-style: italic;
font-display: swap;
font-weight: 500;
src: local(""), url("./assets/fonts/Inter-MediumItalic.woff2") format("woff2"),
url("./assets/fonts/Inter-MediumItalic.ttf") format("truetype");
2024-10-01 16:19:34 +05:00
}
body {
margin: 0;
padding: 0;
}
::-moz-selection {
/* Code for Firefox */
background-color: var(--background-selected);
color: var(--paragraph-selected);
}
::selection {
background-color: var(--background-selected);
color: var(--paragraph-selected);
}