mirror of
https://github.com/oceanprotocol/commons.git
synced 2023-03-15 18:03:00 +01:00
107 lines
3.3 KiB
HTML
107 lines
3.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico" />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1, shrink-to-fit=no"
|
|
/>
|
|
<meta name="theme-color" content="#141414" />
|
|
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
|
|
|
|
<title>Commons Marketplace</title>
|
|
|
|
<link
|
|
rel="preload"
|
|
href="%PUBLIC_URL%/fonts/SharpSansDispNo1-Bold.woff2"
|
|
as="font"
|
|
type="font/woff2"
|
|
crossorigin
|
|
/>
|
|
<link
|
|
rel="preload"
|
|
href="%PUBLIC_URL%/fonts/SharpSans-Medium.woff2"
|
|
as="font"
|
|
type="font/woff2"
|
|
crossorigin
|
|
/>
|
|
<link
|
|
rel="preload"
|
|
href="%PUBLIC_URL%/fonts/SharpSans-Bold.woff2"
|
|
as="font"
|
|
type="font/woff2"
|
|
crossorigin
|
|
/>
|
|
|
|
<style>
|
|
@font-face {
|
|
font-family: 'Sharp Sans Display';
|
|
src: url('%PUBLIC_URL%/fonts/SharpSansDispNo1-Bold.woff2')
|
|
format('woff2'),
|
|
url('%PUBLIC_URL%/fonts/SharpSansDispNo1-Bold.woff')
|
|
format('woff');
|
|
font-weight: 600;
|
|
font-style: normal;
|
|
font-stretch: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Sharp Sans Medium';
|
|
src: url('%PUBLIC_URL%/fonts/SharpSans-Medium.woff2')
|
|
format('woff2'),
|
|
url('%PUBLIC_URL%/fonts/SharpSans-Medium.woff')
|
|
format('woff');
|
|
font-weight: 500;
|
|
font-style: normal;
|
|
font-stretch: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Sharp Sans Bold';
|
|
src: url('%PUBLIC_URL%/fonts/SharpSans-Bold.woff2')
|
|
format('woff2'),
|
|
url('%PUBLIC_URL%/fonts/SharpSans-Bold.woff') format('woff');
|
|
font-weight: 600;
|
|
font-style: normal;
|
|
font-stretch: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
.loader {
|
|
display: block;
|
|
position: relative;
|
|
margin-top: calc(50vh - 15px);
|
|
}
|
|
|
|
.loader:before {
|
|
content: '';
|
|
box-sizing: border-box;
|
|
position: absolute;
|
|
top: -80%;
|
|
left: 50%;
|
|
width: 20px;
|
|
height: 20px;
|
|
margin-top: -10px;
|
|
margin-left: -10px;
|
|
border-radius: 50%;
|
|
border: 2px solid #7b1173;
|
|
border-top-color: #e000cf;
|
|
animation: spinner 0.6s linear infinite;
|
|
}
|
|
|
|
@keyframes spinner {
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<noscript>You need to enable JavaScript to run this app.</noscript>
|
|
<div id="root"><span class="loader"></span></div>
|
|
</body>
|
|
</html>
|