46 lines
670 B
CSS
46 lines
670 B
CSS
@import "tailwindcss";
|
|
@import "leaflet/dist/leaflet.css";
|
|
|
|
:root {
|
|
--background: #ffffff;
|
|
--foreground: #111827;
|
|
--muted: #f4f5f8;
|
|
--muted-foreground: #667085;
|
|
--border: #e6e8ef;
|
|
--primary: #20212b;
|
|
--primary-foreground: #ffffff;
|
|
--radius: 1.25rem;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
background: var(--background);
|
|
color: var(--foreground);
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
}
|
|
|
|
@layer base {
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
|
|
button,
|
|
input {
|
|
font: inherit;
|
|
}
|
|
|
|
.soft-card {
|
|
border-radius: 24px;
|
|
background: var(--muted);
|
|
}
|
|
|
|
.id-shadow {
|
|
box-shadow: 0 24px 70px rgb(22 26 43 / 12%);
|
|
}
|