-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
49 lines (48 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lithium.js</title>
<link rel="icon" href="logo-simple.png" />
<link rel="shortcut icon" href="logo-simple.png" />
<link rel="stylesheet" href="/css/main.css">
<style>
span.glow {
display: inline-block;
padding: 10px;
font-size: 24px;
font-weight: bold;
color: #fff;
text-shadow: 0 0 10px #fff;
animation: glow 1s ease-in-out infinite alternate;
border-radius: 100px;
}
@keyframes glow {
from {
box-shadow: 0 0 10px #fff;
}
to {
box-shadow: 0 0 20px #fff;
}
}
</style>
</head>
<body>
<div align="center">
<img src="logo-full.png" style="
border-radius: 25px;
padding: 20px;
width: 100px;
height: px;
margin-left: auto;
margin-right: auto;
display: block;
">
<h1><span class="glow">Lithium.js</span></h1>
<h2>Bookmarklets/Spoofs to trick censorship!</h2>
<br>
<button onclick="location='spoofs'">Exploits</button>
</body>
</html>