checkout/checkout.html

58 lines
2.3 KiB
HTML
Raw Normal View History

<!doctype html>
2018-05-08 12:23:26 +00:00
<html dir="ltr">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="user-scalable=no,width=device-width,initial-scale=1,maximum-scale=1" />
<meta name="description" content="Checkout" />
2024-05-23 07:37:23 +00:00
<meta name="theme-color" content="#163735" />
<link rel="icon" type="image/x-icon" href="favicon.ico" />
2024-04-02 09:06:18 +00:00
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
2024-04-02 09:06:18 +00:00
href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap"
rel="stylesheet"
/>
<title>Checkout</title>
</head>
2024-07-12 11:47:33 +00:00
<body>
2024-04-16 11:40:47 +00:00
<div id="global-spinner" style="position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%)">
2024-05-29 10:51:12 +00:00
<div style="display: flex; height: 128px">
<svg
viewBox="0 0 57 57"
height="48px"
width="48px"
style="position: relative; animation: spin 0.65s linear infinite"
>
<defs>
<linearGradient id="loaderGradient" x1="100%" x2="0%" y1="0%" y2="100%">
2024-07-12 11:47:33 +00:00
<stop offset="0%" stop-color="#000000" />
<stop offset="100%" stop-color="#EEEEEE" />
2024-05-29 10:51:12 +00:00
</linearGradient>
</defs>
<g fill="none" fill-rule="evenodd" stroke="none" stroke-width="1">
<g
stroke="url(#loaderGradient)"
stroke-width="4"
transform="translate(-655.000000, -383.000000)"
>
<circle cx="683.5" cy="411.5" r="26.5" />
</g>
</g>
2024-05-29 10:51:12 +00:00
</svg>
</div>
</div>
<div id="app"></div>
<script defer type="module" src="/src/main.tsx"></script>
<style>
@keyframes spin {
100% {
transform: rotate(360deg);
}
}
</style>
</body>
</html>