-
Notifications
You must be signed in to change notification settings - Fork 508
/
index.html
79 lines (67 loc) · 3.6 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-holo.simey.me" />
<link rel="icon" href="favicon.png" />
<meta name="thumbnail" content="thumb.png" />
<meta property="og:url" content="https://poke-holo.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-holo.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-holo.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/cosmos-holo.css" />
<link rel="stylesheet" href="css/cards/amazing-rare.css" />
<link rel="stylesheet" href="css/cards/radiant-holo.css" />
<link rel="stylesheet" href="css/cards/v-regular.css" />
<link rel="stylesheet" href="css/cards/v-full-art.css" />
<link rel="stylesheet" href="css/cards/v-max.css" />
<link rel="stylesheet" href="css/cards/v-star.css" />
<link rel="stylesheet" href="css/cards/trainer-full-art.css" />
<link rel="stylesheet" href="css/cards/rainbow-holo.css" />
<link rel="stylesheet" href="css/cards/rainbow-alt.css" />
<link rel="stylesheet" href="css/cards/secret-rare.css" />
<link rel="stylesheet" href="css/cards/trainer-gallery-holo.css" />
<link rel="stylesheet" href="css/cards/trainer-gallery-v-regular.css" />
<link rel="stylesheet" href="css/cards/trainer-gallery-v-max.css" />
<link rel="stylesheet" href="css/cards/trainer-gallery-secret-rare.css" />
<link rel="stylesheet" href="css/cards/shiny-rare.css" />
<link rel="stylesheet" href="css/cards/shiny-v.css" />
<link rel="stylesheet" href="css/cards/shiny-vmax.css" />
<link rel="stylesheet" href="css/cards/swsh-pikachu.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-holo.simey.me', 'deck-24abcd.netlify.app'] }
});
</script>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>