aboutsummaryrefslogtreecommitdiff
path: root/src/static/main.css
blob: 9ab3da39eab952fbb7f981158c5aa1cd5e170ac3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#map { height: 100vh; }

body {
    margin: 0;
}

#LoadingIndicator {
  animation: spin 1.75s linear infinite;
  height: 0;
	margin-left: 40%;
	font-size: 2em;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}