63 lines
1.6 KiB
SCSS
63 lines
1.6 KiB
SCSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
// Google fonts api is broken
|
|
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100&display=swap');
|
|
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200&display=swap');
|
|
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');
|
|
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400&display=swap');
|
|
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');
|
|
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap');
|
|
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');
|
|
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800&display=swap');
|
|
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@900&display=swap');
|
|
|
|
html,
|
|
body {
|
|
padding: 0;
|
|
margin: 0;
|
|
|
|
-webkit-font-smoothing: auto;
|
|
-moz-font-smoothing: auto;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
font-smoothing: auto;
|
|
text-rendering: optimizeLegibility;
|
|
font-smooth: always;
|
|
-webkit-tap-highlight-color: transparent;
|
|
-webkit-touch-callout: none;
|
|
|
|
font-family: Montserrat, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
|
|
Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
|
|
|
|
background: #e8fffb;
|
|
color: #01342d;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
body {
|
|
height: 100%;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
#__next,
|
|
div[data-overlay-container] {
|
|
height: 100%;
|
|
}
|
|
|
|
div > svg {
|
|
height: 100%;
|
|
}
|
|
|
|
.noselect {
|
|
user-select: none;
|
|
}
|