forked from enviPath/enviPy
Rather than have a bunch of pull-requests that @jebus will have to merge shall we collect some of the fixes for the UI issues I found in here. - [x] #259 - [x] #260 - [x] #261 - [x] #262 - [x] #263 - [x] #264 - [x] #265 Co-authored-by: Tobias O <tobias.olenyi@envipath.com> Reviewed-on: enviPath/enviPy#266 Co-authored-by: Liam Brydon <lbry121@aucklanduni.ac.nz> Co-committed-by: Liam Brydon <lbry121@aucklanduni.ac.nz>
29 lines
963 B
HTML
29 lines
963 B
HTML
<style>
|
|
@keyframes spin-slow {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
.spinner-slow svg {
|
|
animation: spin-slow 3s linear infinite;
|
|
}
|
|
</style>
|
|
<div class="spinner-slow flex h-full w-full items-center justify-center">
|
|
<svg
|
|
viewBox="0 0 1000 1000"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
class="h-full w-full"
|
|
>
|
|
<path
|
|
class="hexagon"
|
|
d="m 758.78924,684.71562 0.65313,-363.85 33.725,0.066 -0.65313,363.85001 z M 201.52187,362.53368 512.50834,173.66181 530.01077,202.48506 219.03091,391.35694 z M 510.83924,841.63056 199.3448,653.59653 216.77465,624.72049 528.2691,812.76111 z M 500,975 85.905556,742.30278 l 0,-474.94722 L 500,24.999998 914.09445,257.64444 l 0,475.00001 z M 124.90833,722.45834 500,936.15556 880.26389,713.69722 l 0,-436.15555 L 500,63.949998 124.90833,286.40833 z"
|
|
fill="black"
|
|
stroke="black"
|
|
stroke-width="2"
|
|
/>
|
|
</svg>
|
|
</div>
|