-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (59 loc) · 1.62 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
<!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">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css">
<title>plimdim.github.io</title>
<style>
body {
background: #fbcb3a;
font-family: "Oswald", sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
overflow: hidden;
}
.bitcoin {
width: 250px;
height: 250px;
border: 12px solid #a69e87;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
background: #fbc82f;
filter: drop-shadow(0px 0px 5px #333) invert(5%);
box-shadow: 0 0 30px #333;
box-shadow: 0 0 15px #fff;
box-shadow: 0 0 20px #8e5d09;
animation-duration: 2s;
animation-name: rotates;
animation-iteration-count: infinite;
animation-direction: alternate;
}
.fa-btc {
font-size:100px;
color: #432e19;
filter: drop-shadow(0px 0px 5px #333) invert(15%);
filter: drop-shadow(0px 0px 5px #333);
}
@keyframes rotates {
from {
transform: rotate3d(0, 1, 0, 220deg);
}
to {
transform: rotate3d(0, 2, 15, 360deg);
}
}
</style>
</head>
<body>
<div class="bitcoin">
<i class="fab fa-btc" aria-hidden="true"></i>
</div>
<h1>LN tips: [email protected]</h1>
</body>
</html>