www/src/layouts/partials/floating-join-btn.html

181 lines
4 KiB
HTML
Raw Normal View History

2022-09-19 19:47:40 +03:00
<style>
2022-09-27 23:57:52 +03:00
@media only screen and (min-width: 1200px) {
.gf-container {
width: 20vw;
height: 4vw;
border-radius: 100px;
2022-09-27 23:57:52 +03:00
display: flex;
justify-content: center;
align-items: center;
padding-top: .3vw;
2022-09-27 23:57:52 +03:00
position: fixed;
font-size: 1vw;
2022-09-27 23:57:52 +03:00
background-color: #1a1a1a !important;
border: 2px solid #949494;
color: #ffffff;
text-decoration: none;
font-family: "pp-neue-machina", sans-serif;
text-transform: uppercase;
right: 15px;
top: 5.3vw;
cursor: pointer;
z-index: 5 !important;
2022-09-27 23:57:52 +03:00
transition: 0.2s ease-in-out;
}
.gf-container:hover {
color:#1a1a1a;
box-shadow: inset 0vw 0vw 0vw 0.358vw #1a1a1a !important;
background-color: #00ffd0 !important;
}
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
.gf-container {
2022-10-20 21:19:51 +03:00
width: 20vw;
height: 5vw;
border-radius: 100px;
2022-09-27 23:57:52 +03:00
display: flex;
justify-content: center;
align-items: center;
padding-top: .3vw;
2022-09-27 23:57:52 +03:00
position: fixed;
font-size: 1.2vw;
2022-09-27 23:57:52 +03:00
background-color: #1a1a1a !important;
border: 2px solid #949494;
color: #ffffff;
text-decoration: none;
font-family: "pp-neue-machina", sans-serif;
text-transform: uppercase;
right: 15px;
top: 6.5vw;
cursor: pointer;
z-index: 5 !important;
2022-09-27 23:57:52 +03:00
transition: 0.2s ease-in-out;
}
.gf-container:hover {
color:#1a1a1a;
box-shadow: inset 0vw 0vw 0vw 0.358vw #1a1a1a !important;
background-color: #00ffd0 !important;
}
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
.gf-container {
2022-10-20 21:19:51 +03:00
width: 20vw;
height: 5vw;
border-radius: 100px;
2022-09-27 23:57:52 +03:00
display: flex;
align-items: center;
justify-content: center;
padding-top: 0.3vw;
2022-09-27 23:57:52 +03:00
position: fixed;
text-align:center;
font-size: 1.562vw;
background-color: #1a1a1a !important;
border: 2px solid #949494;
color: #ffffff;
text-decoration: none;
font-family: "pp-neue-machina", sans-serif;
text-transform: uppercase;
right: 15px;
top: 12vw;
2022-09-27 23:57:52 +03:00
cursor: pointer;
z-index: 5 !important;
2022-09-27 23:57:52 +03:00
transition: 0.2s ease-in-out;
}
.gf-container:hover {
color:#1a1a1a;
box-shadow: inset 0vw 0vw 0vw 0.358vw #1a1a1a !important;
background-color: #00ffd0 !important;
}
}
@media only screen and (min-width: 576px) and (max-width: 768px) {
.gf-container {
2022-10-20 21:19:51 +03:00
width: 32vw;
2022-09-27 23:57:52 +03:00
height: 8vw;
display: flex;
align-items: center;
justify-content: center;
border-radius: 100px;
padding-top: 0.3vw;
2022-09-27 23:57:52 +03:00
position: fixed;
text-align:center;
font-size: 2.5vw;
2022-09-27 23:57:52 +03:00
background-color: #1a1a1a !important;
border: 2px solid #949494;
color: #ffffff;
text-decoration: none;
font-family: "pp-neue-machina", sans-serif;
text-transform: uppercase;
right: 15px;
2022-10-20 21:19:51 +03:00
bottom: 2.5vw;
2022-09-27 23:57:52 +03:00
cursor: pointer;
z-index: 5 !important;
2022-09-27 23:57:52 +03:00
transition: 0.2s ease-in-out;
}
.gf-container:hover {
color:#1a1a1a;
box-shadow: inset 0vw 0vw 0vw 0.358vw #1a1a1a !important;
background-color: #00ffd0 !important;
}
}
@media only screen and (max-width: 576px) {
.gf-container {
width: 48vw;
height: 12vw;
2022-09-27 23:57:52 +03:00
display: flex;
align-items: center;
justify-content: center;
border-radius: 100px;
2022-09-27 23:57:52 +03:00
position: fixed;
text-align:center;
padding-top:0.4vw;
2022-09-28 01:51:15 +03:00
font-size: 4vw;
2022-09-27 23:57:52 +03:00
background-color: #1a1a1a !important;
border: 2px solid #949494;
color: #ffffff;
text-decoration: none;
font-family: "pp-neue-machina", sans-serif;
text-transform: uppercase;
2022-09-28 01:51:15 +03:00
right: 3vw;
bottom: 3vw !important;
2022-09-27 23:57:52 +03:00
cursor: pointer;
z-index: 5 !important;
2022-09-27 23:57:52 +03:00
transition: 0.2s ease-in-out;
}
.gf-container:hover {
color:#1a1a1a;
2022-09-28 01:51:15 +03:00
box-shadow: inset 0vw 0vw 0vw 1vw #1a1a1a !important;
2022-09-27 23:57:52 +03:00
background-color: #00ffd0 !important;
}
}
2022-09-19 19:47:40 +03:00
</style>
<a href="https://github.com/login/oauth/authorize?client_id=9d1f1a72f1300b6991df&state=teaxyz" class="gf-container animated-5 animatedFadeInUp fadeInUp auth-btn" style="background-color:#8EC7BF;">
2022-10-20 20:16:05 +03:00
AUTHENTICATE
2022-09-19 19:47:40 +03:00
</a>