-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
133 lines (112 loc) · 3.84 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
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en" data-theme="light">
<head>
<title>LeetCode Cheatsheet</title>
<meta charset="utf-8">
<meta name="description" content="LeetCode Cheatsheet" />
<meta name="viewport" content="initial-scale=1, width=device-width" />
<meta property="og:site_name" content="LeetCode Cheatsheet" />
<meta property="og:title" content="LeetCode Cheatsheet" />
<meta property="og:description" content="lol algorithms" />
<meta property="og:image" content="https://jwl-7.github.io/leetcode-cheatsheet/favicon/android-chrome-512x512.png" />
<meta property="og:url" content="https://jwl-7.github.io/leetcode-cheatsheet/" />
<link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon/favicon-16x16.png">
<link rel="manifest" href="/favicon/site.webmanifest">
<style>
:root {
/* --initial-background-color: #2c292d; */
--initial-background: linear-gradient(135deg, #262626, #1a1a1a);
--pacman-color: #ffd866;
--pacman-size: var(--ball-size) * 2.5;
--ball-size: 15px;
}
body {
background: var(--initial-background);
}
.pacman-loader {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.pacman-loader > div:nth-child(1),
.pacman-loader > div:nth-child(2) {
border: calc(var(--ball-size) * 2.5) solid var(--pacman-color);
border-right-color: transparent;
border-radius: 50%;
width: 0;
height: 0;
left: calc(-1 * var(--ball-size) * 4);
position: relative;
animation: rotate-pacman-half-up .5s infinite;
}
.pacman-loader > div:nth-child(2) {
margin-top: calc(-1 * var(--pacman-size) * 2);
animation-name: rotate-pacman-half-down;
}
.pacman-loader > div:nth-child(3),
.pacman-loader > div:nth-child(4),
.pacman-loader > div:nth-child(5) {
background-color: var(--pacman-color);
border-radius: 50%;
width: var(--ball-size);
height: var(--ball-size);
top: calc(var(--ball-size) * 2);
left: calc(var(--pacman-size) * 2);
position: absolute;
animation: pacman-balls 1s infinite linear;
}
.pacman-loader > div:nth-child(3) {
animation-delay: -.66s;
}
.pacman-loader > div:nth-child(4) {
animation-delay: -.33s;
}
@keyframes rotate-pacman-half-up {
0% {
transform: rotate(270deg);
}
50% {
transform: rotate(360deg);
}
100% {
transform: rotate(270deg);
}
}
@keyframes rotate-pacman-half-down {
0% {
transform: rotate(90deg);
}
50% {
transform: rotate(0);
}
100% {
transform: rotate(90deg);
}
}
@keyframes pacman-balls {
75% {
opacity: .7;
}
100% {
transform: translateX(calc(-1 * (var(--pacman-size) * 2.5)));
}
}
</style>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root">
<div class="pacman-loader">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>