-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
140 lines (122 loc) · 3.35 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
134
135
136
137
138
139
140
<html>
<head>
<title>VibeBerry - Music Bot</title>
<link rel="fav icon" href="https://raw.githubusercontent.com/Attachment-Studios/VibeBerry/master/VibeBerry.png">
<meta name="description" content="VibeBerry - A Berry Bot For Music!">
<meta property="og:url" content="https://VibeBerry-Web.attaditya.repl.co/">
<meta property="og:type" content="website">
<meta property="og:title" content="VibeBerry - Music Bot">
<meta property="og:description" content="VibeBerry - A Berry Bot For Music!">
<meta property="og:image" content="https://raw.githubusercontent.com/Attachment-Studios/VibeBerry/master/VibeBerry Banner.png">
<meta name="twitter:card" content="summary_large_image">
<meta property="twitter:domain" content="VibeBerry-Web.attaditya.repl.co">
<meta property="twitter:url" content="https://VibeBerry-Web.attaditya.repl.co/">
<meta name="twitter:title" content="VibeBerry - Music Bot">
<meta name="twitter:description" content="VibeBerry - A Berry Bot For Music!">
<meta name="twitter:image" content="https://raw.githubusercontent.com/Attachment-Studios/VibeBerry/master/VibeBerry Banner.png">
<script>
window.addEventListener(
"contextmenu",
e => {
e.preventDefault();
}
)
function oauth() {
let perms = '66154304'
let client_id = '895121185065562184'
let url = `https://discord.com/api/oauth2/authorize?client_id=${client_id}&permissions=${perms}&scope=bot`
window.open(url);
}
</script>
<script src="https://kit.fontawesome.com/a63f2fde7e.js" crossorigin="anonymous"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Kite+One&display=swap');
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
* {
background: transparent;
font-family: 'Kite One', cursive;
color: #ffffff;
margin: 0;
padding: 0;
font-size: 4vmin;
transition: 0.5s;
cursor: default;
user-select: none;
}
.banner {
padding-top: 5vmin;
}
i {
padding: 2vmin;
background: #00ebd2;
cursor: pointer;
font-size: 5vmin;
height: 5vmin;
width: 5vmin;
text-align: center;
margin: 1vmin;
border-radius: 2vmin;
}
i:hover {
background: #00ade9;
}
h1 {
font-size: 10vmin;
}
.emp {
margin-top: 25%;
}
.VibeBerry {
height: 50%;
animation: spin 10s infinite linear;
}
.bg {
background: #36393f;
z-index: -1;
height: 100%;
width: 100%;
position: fixed;
top: 0;
left: 0;
}
::-webkit-scrollbar {
background: #36393f;
width: 7px;
height: 7px;
}
::-webkit-scrollbar-track {
background: #36393f;
}
::-webkit-scrollbar-thumb {
background: #00ebd2;
background-image: linear-gradient(to bottom, #00ebd2, #00ade9);
border-radius: 10px;
}
p {
margin-bottom: 3vmin;
}
</style>
</head>
<body>
<div class="banner">
<center>
<img class="VibeBerry" src="https://raw.githubusercontent.com/Attachment-Studios/VibeBerry/master/VibeBerry.png" />
<h1>VibeBerry</h1>
<p>
The Best Music Bot For You!
</p>
<i onclick="oauth();" class="fas fa-plus"></i>
<i onclick="window.open('https://github.com/Attachment-Studios/VibeBerry');" class="fab fa-github"></i>
</center>
</div>
<div class="bg"></div>
</body>
<script></script>
</html>