This repository has been archived by the owner on Apr 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathindex.html
127 lines (104 loc) · 3.22 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preload" as="style"
href="https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Inter:wght@400;900&display=swap">
<link rel="icon" type="image/png" href="/src/assets/spaces-logo.png" />
<meta name="viewport" content="initial-scale=1, width=device-width" />
<meta content="A space is your digital home. A place to store and share links, images, and files. Instead of living in a private server somewhere, your space is stored on a blockchain running in an Avalanche Subnet on the Fuji Network." name="description">
<title>Spaces</title>
<meta property="og:title" content="Claim your space on the Avalanche blockchain">
<meta property="og:site_name" content="Spaces">
<meta property="og:url" content="https://spaces.pages.dev/">
<meta property="og:description" content="A space is your digital home. A place to store and share links, images, and files. Instead of living in a private server somewhere, your space is stored on a blockchain running in an Avalanche Subnet on the Fuji Network.">
<meta property="og:type" content="article">
<meta property="og:image" content="https://spaces.pages.dev/spaces_og2.png">
<meta name="theme-color" content="#121212" />
<link rel="stylesheet" media="print" onload="this.onload=null;this.removeAttribute('media');"
href="https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Inter:wght@400;900&display=swap">
</head>
<body>
<style>
.SnackbarContent-root {
border-radius: 9999px !important;
padding-left: 24px !important;
padding-right: 24px !important;
display: flex;
justify-content: center;
}
.emoji>img {
margin: 0 !important;
}
.SnackbarItem-variantWarning {
background-color: #f67916 !important;
}
@media (max-width: 599px) {
.MuiDialogContent-root {
padding: 0;
}
.MuiTabs-scrollButtons.Mui-disabled {
opacity: 0.3;
}
}
.actions {
opacity: 0;
}
.SnackbarItem-action {
justify-content: center;
margin: 0!important;
padding: 0!important;
}
.SnackbarItem-message {
padding-right: 16px!important;
}
@keyframes hue {
0% {
-webkit-filter: hue-rotate(0deg)
}
to {
-webkit-filter: hue-rotate(-1turn)
}
}
::-webkit-scrollbar {
width: 12px;
height: 12px;
}
::-webkit-scrollbar-thumb {
border-radius: 5px;
}
::-webkit-scrollbar-track {
border-radius: 5px;
}
.light ::-webkit-scrollbar-thumb {
background: rgba(0, 0, 0, 0.3);
}
.light ::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0.1);
}
.MuiTableRow-root:last-child td {
border-bottom: none;
}
.MuiTab-iconWrapper {
margin-bottom: 0 !important;
margin-right: 6px;
}
.dark ::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.3);
}
.dark ::-webkit-scrollbar-track {
background: rgba(255, 255, 255, 0.1);
}
</style>
<script>
if (global === undefined) {
var global = window;
}
</script>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<noscript>Your browser does not support JavaScript</noscript>
</body>
</html>