2022-10-27 01:28:50 +03:00
|
|
|
<section class="countdown-section">
|
|
|
|
<div class="countdown-container">
|
|
|
|
<div class="countdown-contents"><p class="text-center countdown" id="something-new">A new brew's coming in <span id="demo"></span></p></div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
2022-06-08 02:18:10 +03:00
|
|
|
<style>
|
2022-10-27 01:28:50 +03:00
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: "pp-neue-machina";
|
|
|
|
src: url("/fonts/PPNeueMachina-InktrapLight.woff") format("woff");
|
|
|
|
}
|
|
|
|
|
|
|
|
#demo, .authenticate, #something-new{
|
|
|
|
font-family: "pp-neue-machina", sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
#demo,
|
|
|
|
.authenticate a{
|
|
|
|
color: #00ffd0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.countdown-section{
|
|
|
|
background-color: #1a1a1a;
|
|
|
|
position: relative;
|
|
|
|
z-index: 100;
|
|
|
|
}
|
|
|
|
|
|
|
|
.countdown-container{
|
|
|
|
height: 6vh;
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.countdown-contents{
|
|
|
|
width: 100%;
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
-ms-transform: translateY(-50%);
|
|
|
|
transform: translateY(-50%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.countdown{
|
|
|
|
margin-bottom: 0px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Floating GitHub Icon */
|
|
|
|
|
2022-06-08 02:18:10 +03:00
|
|
|
.gf-container {
|
|
|
|
width: 80px;
|
|
|
|
height: 80px;
|
|
|
|
border-radius: 60px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
position: fixed;
|
|
|
|
right: 15px;
|
|
|
|
bottom: 15px;
|
|
|
|
cursor: pointer;
|
|
|
|
box-shadow: 0 0 0 rgba(204, 169, 44, 0.4);
|
|
|
|
animation: pulse 2s infinite;
|
|
|
|
z-index: 200;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gf-container:hover {
|
|
|
|
animation: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
@-webkit-keyframes pulse {
|
|
|
|
0% {
|
|
|
|
-webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.4);
|
|
|
|
}
|
|
|
|
|
|
|
|
70% {
|
|
|
|
-webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
-webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes pulse {
|
|
|
|
0% {
|
|
|
|
-moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.4);
|
|
|
|
box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.4);
|
|
|
|
}
|
|
|
|
|
|
|
|
70% {
|
|
|
|
-moz-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
|
|
|
|
box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
-moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
|
|
|
|
box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.github-icon {
|
|
|
|
width: 60%;
|
|
|
|
margin-top: auto;
|
|
|
|
margin-bottom: auto;
|
|
|
|
}
|
2022-10-27 01:28:50 +03:00
|
|
|
|
2022-06-08 02:18:10 +03:00
|
|
|
</style>
|
|
|
|
|
2022-07-05 23:04:52 +03:00
|
|
|
<a href="https://github.com/login/oauth/authorize?client_id=9d1f1a72f1300b6991df&state=teaxyz" class="gf-container" style="background-color:#8EC7BF;">
|
2022-06-08 02:18:10 +03:00
|
|
|
<img src="/Images/github.svg" alt="" class="github-icon mx-auto">
|
|
|
|
|
|
|
|
</a>
|