Spaces:
Running
Running
File size: 2,511 Bytes
4d65452 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 | body {
margin: 0;
padding: 0;
min-height: 100%;
font-family: 'Plus Jakarta Sans', sans-serif;
background-color: #fcf9f8;
}
* {
box-sizing: border-box;
}
.font-headline {
font-family: 'Newsreader', serif;
}
.hairline {
border-width: 0.5px;
}
.shadow-none {
box-shadow: none !important;
}
.glass-card {
background: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(8px);
}
@keyframes page-in {
from {
opacity: 0;
transform: translateY(12px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.page-enter {
animation: page-in 420ms ease both;
}
.material-symbols-outlined {
font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
vertical-align: middle;
}
.headline-font {
font-family: 'Newsreader', serif;
}
.no-scrollbar::-webkit-scrollbar {
display: none;
}
.no-scrollbar {
-ms-overflow-style: none;
scrollbar-width: none;
}
.step-completed {
background-color: #004880;
}
.step-active {
background-color: #005ea4;
}
.step-inactive {
background-color: #e5e2e1;
}
.onboarding-spinner {
border: 2px solid transparent;
border-top-color: #005ea4;
border-radius: 50%;
width: 80px;
height: 80px;
animation: onboarding-spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}
@keyframes onboarding-spin {
to {
transform: rotate(360deg);
}
}
@keyframes subtle-pulse {
0%,
100% {
opacity: 1;
transform: scale(1);
}
50% {
opacity: 0.85;
transform: scale(0.98);
}
}
.animate-subtle-pulse {
animation: subtle-pulse 4s ease-in-out infinite;
}
.tag-selected {
background-color: #005ea4;
color: #ffffff;
border-color: #005ea4;
}
.flat-card {
background-color: #ffffff;
border: 0.5px solid rgba(0, 0, 0, 0.08);
border-radius: 6px;
}
.btn-primary-ui {
background-color: #005ea4;
color: #ffffff;
border-radius: 6px;
transition: all 0.2s ease;
border: none;
cursor: pointer;
}
.btn-primary-ui:hover {
opacity: 0.92;
}
.btn-primary-ui:active {
transform: scale(0.98);
}
.btn-outline-ui {
border: 1px solid rgba(0, 0, 0, 0.08);
border-radius: 6px;
background: transparent;
transition: all 0.2s ease;
cursor: pointer;
}
.btn-outline-ui:hover {
background-color: #f6f3f2;
}
.toast-enter {
animation: toast-slide-up 0.3s ease forwards;
}
.leaflet-container {
z-index: 1;
font-family: inherit;
}
@keyframes toast-slide-up {
from {
transform: translateY(100%);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
|