-
Notifications
You must be signed in to change notification settings - Fork 1
/
pool.html
183 lines (157 loc) · 4.6 KB
/
pool.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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
<!DOCTYPE html>
<html>
<title>Skrypt Pool[SKRPT]</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway">
<style>
body,h1 {font-family: "Raleway", sans-serif}
body, html {height: 100%}
.bgimg {
background-image: url('bg_s.jpg');
min-height: 100%;
background-position: center;
background-size: cover;
}
@media only screen and (max-width: 800px) {
.w3-display-container{
font-size: 70%;
}
#h1{
font-size: 250%;
}
#p1 {
font-size: 80% !important;
}
#p3 {
font-size: 45% !important;
}
.glow-on-hover{
margin-right: 210px;
margin-top: 40px !important;
height: 30px !important;
width: 150px !important;
}
#img{
height: 50px !important;
width: 50px !important;
}
#middle-div{
font-size: 80%;
margin-top: 7% !important;
padding: 5% !important;
}
.w3-display-middle{
margin-top: 10%;
margin-bottom: 100%;
margin-left: 0%;
margin-right: -20%;
padding: 5%;
}
}
.glow-on-hover {
margin-top: 50px;
margin-left: 212px;
padding: 0;
width: 100%;
height: 100vh;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
background: #000;
}
.glow-on-hover {
width: 220px;
height: 50px;
border: none;
outline: none;
color: #fff;
background: #111;
cursor: pointer;
position: relative;
z-index: 0;
border-radius: 10px;
}
.glow-on-hover:before {
content: '';
background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
position: absolute;
top: -2px;
left:-2px;
background-size: 400%;
z-index: -1;
filter: blur(5px);
width: calc(100% + 4px);
height: calc(100% + 4px);
animation: glowing 20s linear infinite;
opacity: 0;
transition: opacity .3s ease-in-out;
border-radius: 10px;
}
.glow-on-hover:active {
color: #000
}
.glow-on-hover:active:after {
background: transparent;
}
.glow-on-hover:hover:before {
opacity: 1;
}
.glow-on-hover:after {
z-index: -1;
content: '';
position: absolute;
width: 100%;
height: 100%;
background: #111;
left: 0;
top: 0;
border-radius: 10px;
}
@keyframes glowing {
0% { background-position: 0 0; }
50% { background-position: 400% 0; }
100% { background-position: 0 0; }
}
#glow1{
color: #fff;
text-shadow:
0 0 5px #fff,
0 0 10px #fff,
0 0 20px #fff,
0 0 40px #0ff,
0 0 80px #0ff,
0 0 90px #0ff,
0 0 100px #0ff,
0 0 150px #0ff;
}
</style>
<body>
<div class="bgimg w3-display-container w3-animate-opacity w3-text-white">
<div class="w3-display-topleft w3-padding-large w3-xlarge">
<img id="img" src="logo_s.png" style="width: 100px; height: 100px; border-radius: 50%;">
</div>
<div class="w3-display-topmiddle">
<h1 id="h1" style="text-align: center;"><b>Skrypt Pool</b></h1>
<hr class="w3-border-grey" style="margin:auto; width:40%;">
<p id="p1" class="w3-large w3-center" style="color: yellow">Promoting decentralization and building Cardano based blockchain solutions.</p>
<div>
<button class="glow-on-hover" type="button"><a href="https://www.youtube.com/watch?v=k_zK2IzQZj0" target="_blank" style="text-decoration: none;">VIDEO INTRODUCTION</a></button>
</div>
</div>
<div id="middle-div" class="w3-display-middle" style="background-color: rgba(0, 0, 0, 0.8); padding: 2%; margin-top: 4%;">
<p style="font-size: 120%; word-spacing: 80%;">
We are a brand new stake pool from India created for the purpose of boosting decentralization and supporting our Cardano project that's also a proposal for Catalyst Fund 5. We are looking for delegators to help us sustain and build the Cardano Ecosystem for the long term, especially in India. In India there are unfortunately still next to no stakepools. Our aim is to create a Indian Cardano community and build blockchain solutions for the country.
We have <b id="glow1">0% FEES</b> and furthermore, our first block reward will go to a Covid 19 relief fund to do our bit in helping the country deal with this pandemic.
</p>
</div>
<div class="w3-display-bottommiddle w3-padding-large">
<div style="text-align: center;"><b>
Thank you!</b>
</div>
</div>
</div>
</body>
</html>