gonito-frontend/src/index.css

17 lines
348 B
CSS
Raw Normal View History

2022-09-22 13:31:53 +02:00
@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@400;500&family=Roboto:wght@300;400;500&family=Ubuntu:wght@300;400;500&display=swap');
2022-07-05 11:23:31 +02:00
html {
2022-07-05 11:23:31 +02:00
box-sizing: border-box;
scroll-behavior: smooth;
2022-07-01 14:29:38 +02:00
}
*,
*:before,
*:after {
2022-07-05 11:23:31 +02:00
box-sizing: inherit;
}
body {
font-family: 'Roboto', sans-serif;
2022-07-05 13:49:29 +02:00
background-color: #FCFCFC;
}