forked from Night-King-Host/Night-King-Host.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
122 lines (121 loc) · 2.22 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<title>About Us</title>
<meta charset="UTF-8" />
</head>
<style type="text/css">
body {
background:url("1.jpg");
background-repeat:no-repeat;
height:100%;
}
.content {
width:80%;
margin-left:7.5%;
background:rgba(0,0,0,0.5);
color:white;
margin-top:4%;
font-size:25px;
text-align:center;
border-radius:30px;
padding:20px;
line-height:65px;
}
.title {
font-size:40px;
margin:0;
padding:0;
box-sizing:border-box;
font-weight:bolder;
margin-bottom:10px;
}
.yellow {
color:yellow;
}
.hue {
color:yellow;
padding:10px;
border-radius:10px;
animation:hue 5s linear infinite;
-webkit-animation: hue 5s linear infinite;
box-shadow: 0px 0px 50px yellow;
color:white;
background:rgba(255,255,0,0.4);
}
.hue:hover{
color:yellow;
background:transparent;
}
@keyframes hue{
0%{
filter:hue-rotate(0deg);
-webkit-filter:hue-rotate(0deg);
}
10%{
box-shadow: 0px 1px 50px yellow;
}
20%{
box-shadow: 1px 1px 50px yellow;
}
30%{
box-shadow: 1px 0px 50px yellow;
}
40%{
box-shadow: 1px -1px 50px yellow;
}
50%{
box-shadow: 0px -1px 50px yellow;
}
60%{
box-shadow: -1px -1px 50px yellow;
}
70%{
box-shadow: -1px 0px 50px yellow;
}
80%{
box-shadow: -1px 1px 50px yellow;
}
90%{
box-shadow: 0px 1px 50px yellow;
}
100%{
filter:hue-rotate(360deg);
-webkit-filter:hue-rotate(360deg);
}
}
.text {
padding-bottom:50px;
}
.back {
font-size:25px;
margin-top:10px;
display:block;
line-height:55px;
width:20%;
text-decoration:none;
height:50px;
background:white;
color:black;
border-radius:15px;
}
.back:hover{
border:2px solid white;
background:transparent;
box-sizing:border-box;
color:white;
}
</style>
<body>
<center><a href="index.html" class="back" >Back To Host</a></center>
<div class="content" >
<div class="title" >About Us</div>
<div class="text" >
<span class="yellow" > Host Developer :</span > <span class="hue" >KameleonRE</span><br>
<span class="yellow" >Super Special Thanks To : </span>Sleirsgoevy , ChendoChap, theflow0, Al-Azif, SiSTRo and Many More. <br>
And
<span class="hue" >Amirhossein Kianfard</span>
</div>
</div>
</body>
</html>