-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
79 lines (71 loc) · 3.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- meta -->
<title>Pokémon Cards CSS Holographic Effect</title>
<meta
name="description"
content="An exploration of what's possible with CSS for Pokemon Cards, simeydotme (Simon Goellner)"
/>
<link rel="canonical" href="https://poke-151.simey.me" />
<link rel="icon" href="favicon.png" />
<meta name="thumbnail" content="thumb.png" />
<meta property="og:url" content="https://poke-151.simey.me" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Pokémon Cards CSS Holographic Effect" />
<meta
property="og:description"
content="An exploration of what's possible with CSS for Pokemon Cards, simeydotme (Simon Goellner)"
/>
<meta property="og:image" content="https://poke-151.simey.me/thumb.png" />
<meta name="twitter:title" content="Pokémon Cards CSS Holographic Effect" />
<meta
name="twitter:description"
content="An exploration of what's possible with CSS for Pokemon Cards, simeydotme (Simon Goellner)"
/>
<meta name="twitter:image" content="https://poke-151.simey.me/thumb.png" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@simeydotme" />
<!-- fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,700;1,300;1,700&family=Roboto:ital,wght@0,300;0,700;1,300;1,700&display=swap"
/>
<!-- styles -->
<link rel="stylesheet" href="css/global.css" />
<link rel="stylesheet" href="css/cards/base.css" />
<link rel="stylesheet" href="css/cards.css" />
<link rel="stylesheet" href="css/cards/basic.css" />
<link rel="stylesheet" href="css/cards/reverse-holo.css" />
<link rel="stylesheet" href="css/cards/regular-holo.css" />
<link rel="stylesheet" href="css/cards/ex-regular.css" />
<link rel="stylesheet" href="css/cards/ex-full-art.css" />
<link rel="stylesheet" href="css/cards/illustration-rare.css" />
<link rel="stylesheet" href="css/cards/poke-ball-holo.css" />
<link rel="stylesheet" href="css/cards/ex-special-illustration-rare.css" />
<link rel="stylesheet" href="css/cards/hyper-rare.css" />
</head>
<body>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=%VITE_GA%"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "%VITE_GA%", {
linker: { domains: ["poke-151.simey.me", "poke-151.netlify.app"] },
});
</script>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>