This repository has been archived by the owner on Nov 12, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
For the moment it is only new pages that are redirecting to the webpage associated
- Loading branch information
1 parent
781c76b
commit 516482c
Showing
9 changed files
with
414 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,156 @@ | ||
*, | ||
*::before, | ||
*::after { | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: inherit; | ||
} | ||
|
||
html { | ||
box-sizing: border-box; | ||
} | ||
|
||
body { | ||
margin: auto; | ||
font-family: -apple-system, BlinkMacSystemFont, sans-serif; | ||
overflow: auto; | ||
background: linear-gradient(315deg, rgb(101, 0, 94) 3%, rgb(60, 132, 206) 38%, rgb(48, 238, 226) 68%, rgb(255, 25, 25) 98%); | ||
animation: gradient 15s ease infinite; | ||
background-size: 400% 400%; | ||
background-attachment: fixed; | ||
} | ||
|
||
@keyframes gradient { | ||
0% { | ||
background-position: 0% 0%; | ||
} | ||
50% { | ||
background-position: 100% 100%; | ||
} | ||
100% { | ||
background-position: 0% 0%; | ||
} | ||
} | ||
.wave { | ||
background: rgba(255, 255, 255, 0.25); | ||
border-radius: 1000% 1000% 0 0; | ||
position: fixed; | ||
width: 200%; | ||
height: 12em; | ||
animation: wave 10s -3s linear infinite; | ||
transform: translate3d(0, 0, 0); | ||
opacity: 0.8; | ||
bottom: 0; | ||
left: 0; | ||
z-index: -1; | ||
} | ||
|
||
.wave:nth-of-type(2) { | ||
bottom: -1.25em; | ||
animation: wave 18s linear reverse infinite; | ||
opacity: 0.8; | ||
} | ||
|
||
.wave:nth-of-type(3) { | ||
bottom: -2.5em; | ||
animation: wave 20s -1s reverse infinite; | ||
opacity: 0.9; | ||
} | ||
|
||
@keyframes wave { | ||
2% { | ||
transform: translateX(1); | ||
} | ||
25% { | ||
transform: translateX(-25%); | ||
} | ||
50% { | ||
transform: translateX(-50%); | ||
} | ||
75% { | ||
transform: translateX(-25%); | ||
} | ||
100% { | ||
transform: translateX(1); | ||
} | ||
} | ||
.container { | ||
margin: auto auto; | ||
height: 90vh; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
|
||
.tittle, | ||
.subtitle { | ||
margin-bottom: 40px; | ||
color: #44b9ff; | ||
letter-spacing: 4px; | ||
text-transform: uppercase; | ||
} | ||
|
||
.square-container { | ||
list-style-type: none; | ||
display: flex; | ||
position: relative; | ||
} | ||
|
||
.square { | ||
margin: 4px; | ||
width: 30px; | ||
height: 30px; | ||
border-radius: 7px; | ||
animation: rotating 2.5s ease infinite; | ||
} | ||
|
||
.square1 { | ||
background: #736efe; | ||
animation-delay: 0.2s; | ||
} | ||
|
||
.square2 { | ||
background: #5999ff; | ||
animation-delay: 0.4s; | ||
} | ||
|
||
.square3 { | ||
background: #44b9ff; | ||
animation-delay: 0.6s; | ||
} | ||
|
||
.square4 { | ||
background: #31d8ff; | ||
animation-delay: 0.8s; | ||
} | ||
|
||
.square5 { | ||
background: #18ffff; | ||
animation-delay: 1s; | ||
} | ||
|
||
@keyframes rotating { | ||
0% { | ||
transform: rotate(0) scale(1); | ||
} | ||
50% { | ||
transform: rotate(90deg) scale(0.6); | ||
} | ||
100% { | ||
transform: rotate(90deg) scale(1); | ||
} | ||
} | ||
footer { | ||
margin: auto auto; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
margin-bottom: 10px; | ||
color: #31d8ff; | ||
} | ||
|
||
footer a { | ||
color: #736efe; | ||
}/*# sourceMappingURL=redirecting.css.map */ |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,165 @@ | ||
$color-primary1: #736efe; | ||
$color-primary2: #5999ff; | ||
$color-primary3: #44b9ff; | ||
$color-primary4: #31d8ff; | ||
$color-primary5: #18ffff; | ||
|
||
*, | ||
*::before, | ||
*::after { | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: inherit; | ||
} | ||
|
||
html { | ||
box-sizing: border-box; | ||
} | ||
|
||
body { | ||
margin: auto; | ||
font-family: -apple-system, BlinkMacSystemFont, sans-serif; | ||
overflow: auto; | ||
background: linear-gradient(315deg, rgba(101, 0, 94, 1) 3%, rgba(60, 132, 206, 1) 38%, rgba(48, 238, 226, 1) 68%, rgba(255, 25, 25, 1) 98%); | ||
animation: gradient 15s ease infinite; | ||
background-size: 400% 400%; | ||
background-attachment: fixed; | ||
} | ||
|
||
@keyframes gradient { | ||
0% { | ||
background-position: 0% 0%; | ||
} | ||
50% { | ||
background-position: 100% 100%; | ||
} | ||
100% { | ||
background-position: 0% 0%; | ||
} | ||
} | ||
|
||
.wave { | ||
background: rgb(255 255 255 / 25%); | ||
border-radius: 1000% 1000% 0 0; | ||
position: fixed; | ||
width: 200%; | ||
height: 12em; | ||
animation: wave 10s -3s linear infinite; | ||
transform: translate3d(0, 0, 0); | ||
opacity: 0.8; | ||
bottom: 0; | ||
left: 0; | ||
z-index: -1; | ||
} | ||
|
||
.wave:nth-of-type(2) { | ||
bottom: -1.25em; | ||
animation: wave 18s linear reverse infinite; | ||
opacity: 0.8; | ||
} | ||
|
||
.wave:nth-of-type(3) { | ||
bottom: -2.5em; | ||
animation: wave 20s -1s reverse infinite; | ||
opacity: 0.9; | ||
} | ||
|
||
@keyframes wave { | ||
2% { | ||
transform: translateX(1); | ||
} | ||
|
||
25% { | ||
transform: translateX(-25%); | ||
} | ||
|
||
50% { | ||
transform: translateX(-50%); | ||
} | ||
|
||
75% { | ||
transform: translateX(-25%); | ||
} | ||
|
||
100% { | ||
transform: translateX(1); | ||
} | ||
} | ||
|
||
.container { | ||
margin: auto auto; | ||
height: 90vh; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
|
||
.tittle, | ||
.subtitle { | ||
margin-bottom: 40px; | ||
color: #44b9ff; | ||
letter-spacing: 4px; | ||
text-transform: uppercase; | ||
} | ||
|
||
.square-container { | ||
list-style-type: none; | ||
display: flex; | ||
position: relative; | ||
} | ||
|
||
.square { | ||
margin: 4px; | ||
width: 30px; | ||
height: 30px; | ||
border-radius: 7px; | ||
animation: rotating 2.5s ease infinite; | ||
} | ||
|
||
.square1 { | ||
background: $color-primary1; | ||
animation-delay: 0.2s; | ||
} | ||
.square2 { | ||
background: $color-primary2; | ||
animation-delay: 0.4s; | ||
} | ||
.square3 { | ||
background: $color-primary3; | ||
animation-delay: 0.6s; | ||
} | ||
.square4 { | ||
background: $color-primary4; | ||
animation-delay: 0.8s; | ||
} | ||
.square5 { | ||
background: $color-primary5; | ||
animation-delay: 1s; | ||
} | ||
|
||
@keyframes rotating { | ||
0% { | ||
transform: rotate(0) scale(1); | ||
} | ||
50% { | ||
transform: rotate(90deg) scale(0.6); | ||
} | ||
100% { | ||
transform: rotate(90deg) scale(1); | ||
} | ||
} | ||
|
||
footer { | ||
margin: auto auto; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
margin-bottom: 10px; | ||
color: $color-primary4; | ||
} | ||
|
||
footer a { | ||
color: $color-primary1; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<head> | ||
<title>Super Premium offer - Bees Tech</title> | ||
<link href="../assets/css/redirecting.css" rel="stylesheet" /> | ||
<meta http-equiv="refresh" content="2; url='https://ifastnet.com/portal/aff.php?aff=28302&a=add&pid=86&billingcycle=monthly&language=English'" /> | ||
</head> | ||
|
||
<body> | ||
<div> | ||
<div class="wave"></div> | ||
<div class="wave"></div> | ||
<div class="wave"></div> | ||
</div> | ||
<section class="container"> | ||
<div class="square-container"> | ||
<div class="square square1"> </div> | ||
<div class="square square2"> </div> | ||
<div class="square square3"> </div> | ||
<div class="square square4"> </div> | ||
<div class="square square5"> </div> | ||
</div> | ||
</section> | ||
</body> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<head> | ||
<title>Ultimate Premium offer - Bees Tech</title> | ||
<link href="../assets/css/redirecting.css" rel="stylesheet" /> | ||
<meta http-equiv="refresh" content="2; url='https://ifastnet.com/portal/aff.php?aff=28302&a=add&pid=88&billingcycle=monthly&language=English'" /> | ||
</head> | ||
|
||
<body> | ||
<div> | ||
<div class="wave"></div> | ||
<div class="wave"></div> | ||
<div class="wave"></div> | ||
</div> | ||
<section class="container"> | ||
<div class="square-container"> | ||
<div class="square square1"> </div> | ||
<div class="square square2"> </div> | ||
<div class="square square3"> </div> | ||
<div class="square square4"> </div> | ||
<div class="square square5"> </div> | ||
</div> | ||
</section> | ||
</body> |
Oops, something went wrong.