47 lines
No EOL
852 B
CSS
47 lines
No EOL
852 B
CSS
@import "tailwindcss";
|
|
|
|
@font-face {
|
|
src: url("/src/assets/fonts/ShortStack-Regular.ttf");
|
|
font-family: 'Short Stack';
|
|
font-weight: 400;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
:root {
|
|
font-family: 'Short Stack', sans-serif;
|
|
font-size: 16px;
|
|
line-height: 24px;
|
|
font-weight: 400;
|
|
|
|
color: #0f0f0f;
|
|
background-color: #DACEBA;
|
|
|
|
font-synthesis: none;
|
|
text-rendering: optimizeLegibility;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
-webkit-text-size-adjust: 100%;
|
|
}
|
|
|
|
.container {
|
|
margin: 0;
|
|
padding-top: 10vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
text-align: center;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
:root {
|
|
color: #f6f6f6;
|
|
background-color: #3E394B;
|
|
}
|
|
}
|
|
|
|
@layer utilities {
|
|
.text-stroke {
|
|
-webkit-text-stroke: 2px #f6f6f6;
|
|
}
|
|
} |