-
Notifications
You must be signed in to change notification settings - Fork 0
/
log-1.1.3.html
277 lines (259 loc) · 5.79 KB
/
log-1.1.3.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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
<!DOCTYPE html>
<html>
<head>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400,500,700&display=swap"
rel="stylesheet"
/>
<style>
/*
http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
display: block;
}
body {
line-height: 1.1;
}
ol,
ul {
list-style: none;
}
blockquote,
q {
quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
content: "";
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
</style>
<style>
body {
font-family: "DM Sans", sans-serif;
margin: 0;
padding: 0;
font-size: 16px;
background-color: var(--primaryBackground);
}
* {
box-sizing: border-box;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
}
h1 {
font-weight: 700;
font-size: 1.25rem;
margin-bottom: 24px;
color: var(--primaryHighlight);
}
h2 {
font-weight: 700;
font-size: 1.1rem;
margin-top: 16px;
margin-bottom: 8px;
color: var(--primaryFill);
}
p {
margin-bottom: 16px;
color: var(--secondaryFill);
}
a {
color: inherit;
text-decoration: underline;
}
a:hover {
text-decoration: none;
}
</style>
</head>
<body>
<script>
var theme = new URLSearchParams(window.location.search).get("theme")
var DarkTheme = `
body {
--primaryBackground: #101010;
--secondaryBackground: #1c1d1f;
--primaryFill: #ffffff;
--secondaryFill: #8c8c8d;
--primaryHighlight: #0971f1;
--secondaryHighlight: #227ff2;
--primaryBorder: rgba(255, 255, 255, 0.1);
--secondaryBorder: rgba(255, 255, 255, 0.2);
--primaryError: #f9153e;
--secondaryError: #190206;
}
`
var LightTheme = `
body {
--primaryBackground: #ffffff;
--secondaryBackground: #f7f7f7;
--primaryFill: #000000;
--secondaryFill: rgba(0, 0, 0, 0.6);
--primaryHighlight: #0971f1;
--secondaryHighlight: #227ff2;
--primaryBorder: rgba(0, 0, 0, 0.1);
--secondaryBorder: rgba(0, 0, 0, 0.2);
--primaryError: #f9153e;
--secondaryError: #190206;
}
`
let styles = ``
if (theme === "dark") {
styles = DarkTheme
} else if (theme === "light") {
styles = LightTheme
} else {
styles = `
@media (prefers-color-scheme: dark) {
${DarkTheme}
}
@media (prefers-color-scheme: light) {
${LightTheme}
}`
}
var styleSheet = document.createElement("style")
styleSheet.type = "text/css"
styleSheet.innerText = styles
document.head.appendChild(styleSheet)
</script>
<h1>1.1.3 - July 28th, 2022</h1>
<div style="display: flex; justify-content: center; align-items: center">
<img
src="clubnft.gif"
alt="Artnome meme"
style="image-rendering: pixelated"
/>
</div>
<h2>Versum Partners With ClubNFT</h2>
<p>
We are proud to announce that as part of our ongoing efforts to keep our
artists and collectors safe, and to continue pushing towards a truly
trustless and decentralized future, Versum has partnered with ClubNFT to
provide free backups to all of our users!
</p>
<p>
Versum follows Web3 best practices and stores all the artwork and other
off-chain data for every NFT on IPFS. By partnering with ClubNFT, our
users can now easily download a backup of all this content to their own
computer, ensuring the safety and longevity of their NFT collection no
matter what may happen in the future.
</p>
<p>
We have added a button for our users to easily and quickly request a
backup from ClubNFT. You will find the button on our new integrations
section with the user settings. The service is free, trustless, requires
no wallet connection or transaction signing, and helps keep you safe!
</p>
</body>
</html>