39 lines
794 B
CSS
39 lines
794 B
CSS
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;600&display=swap");
|
|
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Noto+Sans:wght@500&display=swap");
|
|
@import "https://js.arcgis.com/4.28/@arcgis/core/assets/esri/themes/light/main.css";
|
|
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
.esri-widget {
|
|
display: none;
|
|
}
|
|
|
|
body {
|
|
font-family: "Montserrat", sans-serif;
|
|
font-family: "Noto Sans", sans-serif;
|
|
background-color: #f3f2f0;
|
|
|
|
scrollbar-color: #c7bdba;
|
|
scrollbar-width: thin;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 3px;
|
|
height: 3px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: #fff;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: #c7bdba;
|
|
border-radius: 99px;
|
|
}
|
|
|
|
:fullscreen::backdrop {
|
|
background: none;
|
|
}
|