lr_boilerplate/web/src/index.css

39 lines
932 B
CSS
Raw Normal View History

2024-02-24 09:54:32 +07:00
@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Goldman:wght@400;700&display=swap')
2023-12-11 23:38:52 +07:00
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
color-scheme: light !important;
}
html {
background-color: transparent !important;
}
2023-12-05 13:55:38 +07:00
body {
margin: 0;
2024-02-24 09:54:32 +07:00
font-family: "Goldman", 'Segoe UI', 'Roboto', 'Oxygen',
2023-12-05 13:55:38 +07:00
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
height: 100vh;
2023-12-11 23:38:52 +07:00
width: 100vw;
overflow: hidden;
background-color: transparent !important;
2023-12-05 13:55:38 +07:00
}
#root {
2023-12-11 23:38:52 +07:00
height: 100%;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
background-color: transparent !important;
2023-12-05 13:55:38 +07:00
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
2023-12-11 23:38:52 +07:00
}