2022-08-13 16:15:08 +02:00
|
|
|
@font-face {
|
|
|
|
font-family: "LondonBetween";
|
|
|
|
src: url("../fonts/LondonBetween.woff") format("woff");
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: "JosefinSans-Regular";
|
|
|
|
src: url("../fonts/JosefinSans-Regular.woff") format("woff");
|
|
|
|
}
|
|
|
|
@font-face {
|
|
|
|
font-family: "Sofia-Pro-Light";
|
|
|
|
src: url("../fonts/SofiaProLight.woff") format("woff");
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: "Sofia-Pro-Medium";
|
|
|
|
src: url("../fonts/SofiaProMedium.woff") format("woff");
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: "SourceCodePro-Semibold";
|
|
|
|
src: url("../fonts/SourceCodePro-Semibold.woff") format("woff");
|
|
|
|
}
|
2023-01-31 18:18:42 +01:00
|
|
|
|
2022-08-13 16:15:08 +02:00
|
|
|
* {
|
2022-08-19 09:57:57 +02:00
|
|
|
box-sizing: border-box;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2022-08-13 16:15:08 +02:00
|
|
|
background-color: #1a1a2e;
|
|
|
|
}
|
|
|
|
|
2023-02-03 20:13:45 +01:00
|
|
|
body {
|
|
|
|
background-color: #1a1a2e;
|
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
header {
|
2022-08-13 16:15:08 +02:00
|
|
|
display: flex;
|
2022-08-19 09:57:57 +02:00
|
|
|
justify-content: flex-end;
|
|
|
|
align-items: center;
|
|
|
|
padding: 0px 10%;
|
|
|
|
padding-left: 8%;
|
2022-08-13 16:15:08 +02:00
|
|
|
background-color: #1a1a2e;
|
2023-01-31 18:18:42 +01:00
|
|
|
padding-top: 20px;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
.logo {
|
|
|
|
margin-right: auto;
|
2022-09-27 19:32:16 +02:00
|
|
|
margin-left: 40px;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
.logo img {
|
2022-09-27 19:32:16 +02:00
|
|
|
width: 190px;
|
2022-08-19 09:57:57 +02:00
|
|
|
height: auto;
|
2022-09-27 19:32:16 +02:00
|
|
|
padding-right: 10px;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
.nav__links {
|
|
|
|
list-style: none;
|
2022-08-13 16:15:08 +02:00
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
.nav__links a,
|
|
|
|
.cta,
|
|
|
|
.overlay__content a {
|
|
|
|
font-family: "Sofia-Pro-Medium";
|
2022-08-13 16:15:08 +02:00
|
|
|
font-size: 20px;
|
2022-08-19 09:57:57 +02:00
|
|
|
font-weight: 500;
|
|
|
|
color: #cfe8f6;
|
2022-08-13 16:15:08 +02:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
.nav__links li {
|
|
|
|
padding: 0px 20px;
|
|
|
|
}
|
2022-08-13 16:15:08 +02:00
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
.nav__links li a:hover {
|
2022-08-13 16:15:08 +02:00
|
|
|
color: aquamarine;
|
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
.cta {
|
|
|
|
margin-left: 20px;
|
2022-09-27 19:32:16 +02:00
|
|
|
padding: 16px 25px;
|
2022-08-19 09:57:57 +02:00
|
|
|
background-color: aquamarine;
|
2023-01-31 18:18:42 +01:00
|
|
|
border: none;
|
2023-01-28 17:20:37 +01:00
|
|
|
border: solid aquamarine;
|
|
|
|
border-radius: 0.2rem;
|
2022-08-19 09:57:57 +02:00
|
|
|
cursor: pointer;
|
|
|
|
transition: all 0.3s ease 0s;
|
|
|
|
color: #1a1a2e;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
2022-08-19 09:57:57 +02:00
|
|
|
|
|
|
|
.cta:hover {
|
|
|
|
transform: scale(1.2);
|
2023-02-03 20:13:45 +01:00
|
|
|
background-color: #1a1a2e;
|
2023-01-28 17:20:37 +01:00
|
|
|
color: aquamarine;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
2022-08-19 09:57:57 +02:00
|
|
|
|
|
|
|
#close-id {
|
2023-02-03 20:13:45 +01:00
|
|
|
padding: 0px;
|
|
|
|
margin-right: 32px;
|
|
|
|
font-size: 43px;
|
2023-02-26 17:49:35 +01:00
|
|
|
margin-right: 6%;
|
2023-02-03 20:13:45 +01:00
|
|
|
margin-top: 5px;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
.nav__links a:hover {
|
|
|
|
border-bottom: 2px solid aquamarine;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
.top {
|
|
|
|
background-color: #1a1a2e;
|
|
|
|
display: flex;
|
2023-02-03 20:13:45 +01:00
|
|
|
height: max-content;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
.text h2 {
|
|
|
|
font-family: "JosefinSans-Regular";
|
|
|
|
color: #cfe8f6;
|
|
|
|
font-size: 4rem;
|
|
|
|
}
|
|
|
|
.text p {
|
|
|
|
font-family: "Sofia-Pro-Medium";
|
|
|
|
font-size: 20px;
|
|
|
|
color: #cfe8f6;
|
2023-02-03 20:13:45 +01:00
|
|
|
padding-top: 10px;
|
2022-08-19 09:57:57 +02:00
|
|
|
}
|
|
|
|
.text a {
|
|
|
|
font-family: "Sofia-Pro-Medium";
|
|
|
|
color: #cfe8f6;
|
|
|
|
}
|
|
|
|
.text a:hover {
|
|
|
|
color: aquamarine;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
.text {
|
|
|
|
padding-top: 150px;
|
|
|
|
padding-left: 10%;
|
|
|
|
margin-right: auto;
|
2023-02-03 20:13:45 +01:00
|
|
|
max-width: 600px;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
2022-08-19 09:57:57 +02:00
|
|
|
|
|
|
|
#install-hypr div {
|
2023-01-31 18:18:42 +01:00
|
|
|
width: 300px;
|
|
|
|
height: 60px;
|
2022-08-19 09:57:57 +02:00
|
|
|
background-color: aquamarine;
|
2023-02-03 20:13:45 +01:00
|
|
|
margin-top: 40px;
|
2022-08-19 09:57:57 +02:00
|
|
|
transition: all 0.5s ease;
|
2023-01-28 17:20:37 +01:00
|
|
|
border-radius: 0.2rem;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
#install-hypr div p {
|
|
|
|
text-align: center;
|
2023-01-31 18:18:42 +01:00
|
|
|
color: #1a1a2e;
|
2022-08-19 09:57:57 +02:00
|
|
|
background-color: aquamarine;
|
2023-02-03 20:13:45 +01:00
|
|
|
padding-top: 1rem;
|
2023-01-23 19:02:06 +01:00
|
|
|
padding-bottom: 1rem;
|
2023-01-31 18:18:42 +01:00
|
|
|
font-size: 22px;
|
2023-01-28 17:20:37 +01:00
|
|
|
border-radius: 0.2rem;
|
2023-02-03 20:13:45 +01:00
|
|
|
border: solid aquamarine;
|
2023-01-28 17:20:37 +01:00
|
|
|
transition: all 0.5s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
#install-hypr div p:hover {
|
|
|
|
background-color: #1a1a2e;
|
2023-02-03 20:13:45 +01:00
|
|
|
color: aquamarine;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
#install-hypr {
|
|
|
|
text-decoration: none;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
#install-hypr div:hover {
|
|
|
|
transform: scale(1.2);
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#slide {
|
2022-08-19 09:57:57 +02:00
|
|
|
margin-top: 100px;
|
|
|
|
margin-right: 6%;
|
|
|
|
margin-left: 40px;
|
2023-02-03 20:13:45 +01:00
|
|
|
width: 640px;
|
2022-08-19 09:57:57 +02:00
|
|
|
height: max-content;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2023-02-03 20:13:45 +01:00
|
|
|
padding-bottom: 5%;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#slide-content {
|
2022-08-19 09:57:57 +02:00
|
|
|
width: 640px;
|
2022-08-13 16:15:08 +02:00
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
.swiper {
|
2023-01-31 18:18:42 +01:00
|
|
|
width: 100%;
|
|
|
|
height: fit-content;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
.swiper-slide img {
|
|
|
|
width: 640px;
|
2022-08-13 16:15:08 +02:00
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.swiper .swiper-button-prev,
|
|
|
|
.swiper .swiper-button-next {
|
|
|
|
color: #cfe8f6;
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.swiper .swiper-pagination-bullet-active {
|
|
|
|
background-color: #cfe8f6;
|
|
|
|
}
|
|
|
|
|
|
|
|
.swiper .swiper-pagination {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
2022-08-19 09:57:57 +02:00
|
|
|
/* Mobile Nav */
|
2022-08-13 16:15:08 +02:00
|
|
|
|
2023-01-31 18:18:42 +01:00
|
|
|
.menu {
|
|
|
|
display: none;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
.overlay {
|
|
|
|
height: 100%;
|
|
|
|
width: 0;
|
|
|
|
position: fixed;
|
|
|
|
z-index: 1;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
background-color: #1a1a2e;
|
|
|
|
overflow-x: hidden;
|
|
|
|
transition: all 0.5s ease 0s;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
.overlay--active {
|
2022-08-13 16:15:08 +02:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
.overlay__content {
|
2022-08-13 16:15:08 +02:00
|
|
|
display: flex;
|
|
|
|
height: 100%;
|
2022-08-19 09:57:57 +02:00
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
.overlay a {
|
|
|
|
padding: 15px;
|
|
|
|
font-size: 36px;
|
|
|
|
display: block;
|
|
|
|
transition: all 0.3s ease 0s;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
.overlay a:hover,
|
|
|
|
.overlay a:focus {
|
|
|
|
color: aquamarine;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
2022-08-19 09:57:57 +02:00
|
|
|
.overlay .close {
|
|
|
|
position: absolute;
|
|
|
|
top: 20px;
|
|
|
|
right: 45px;
|
|
|
|
font-size: 60px;
|
2022-08-13 16:15:08 +02:00
|
|
|
color: #cfe8f6;
|
2022-08-19 09:57:57 +02:00
|
|
|
cursor: pointer;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
.mob-menu {
|
|
|
|
display: none;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
.mob-menu {
|
|
|
|
font-size: 40px;
|
2022-08-13 16:15:08 +02:00
|
|
|
color: #cfe8f6;
|
2022-08-19 09:57:57 +02:00
|
|
|
cursor: pointer;
|
|
|
|
transition: all 0.5s ease;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
.mob-menu:hover {
|
|
|
|
color: aquamarine;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
.features {
|
|
|
|
width: 80%;
|
|
|
|
height: auto;
|
|
|
|
margin: 0px 10%;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
.features h1 {
|
|
|
|
font-size: 69px;
|
|
|
|
font-family: "JosefinSans-Regular";
|
|
|
|
color: #cfe8f6;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
#features-text {
|
|
|
|
padding-top: 30px;
|
|
|
|
padding-bottom: 120px;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
2022-08-19 09:57:57 +02:00
|
|
|
.animation {
|
|
|
|
display: flex;
|
2022-08-13 16:15:08 +02:00
|
|
|
width: 100%;
|
2022-08-19 09:57:57 +02:00
|
|
|
height: 500px;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
#ani-vid video {
|
|
|
|
width: 640px;
|
|
|
|
height: auto;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
#ani-text {
|
|
|
|
margin-left: 10%;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
#ani-text h1 {
|
|
|
|
font-size: 53px;
|
|
|
|
text-align: center;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
#ani-text p {
|
|
|
|
font-family: "Sofia-Pro-Light";
|
2022-08-13 16:15:08 +02:00
|
|
|
font-size: 20px;
|
2022-08-19 09:57:57 +02:00
|
|
|
color: #cfe8f6;
|
|
|
|
text-align: center;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
#ani-text a {
|
|
|
|
text-decoration: none;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
#ani-text a div {
|
2023-02-03 20:13:45 +01:00
|
|
|
color: #1a1a2e;
|
2022-08-19 09:57:57 +02:00
|
|
|
font-family: "Sofia-Pro-Medium";
|
2023-02-03 20:13:45 +01:00
|
|
|
font-size: 16px;
|
2022-08-19 09:57:57 +02:00
|
|
|
padding: 20px;
|
2023-02-03 20:13:45 +01:00
|
|
|
margin: 0px 17%;
|
2022-08-19 09:57:57 +02:00
|
|
|
margin-top: 40px;
|
2023-01-28 17:20:37 +01:00
|
|
|
border-radius: 0.2rem;
|
|
|
|
border: solid aquamarine;
|
2023-01-31 18:18:42 +01:00
|
|
|
background-color: aquamarine;
|
|
|
|
text-align: center;
|
|
|
|
transition: all 0.3s ease;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
#ani-text a div:hover {
|
|
|
|
transform: scale(1.2);
|
2023-02-03 20:13:45 +01:00
|
|
|
background-color: #1a1a2e;
|
2023-01-28 17:20:37 +01:00
|
|
|
color: aquamarine;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
.tiling {
|
2022-08-13 16:15:08 +02:00
|
|
|
display: flex;
|
2022-08-19 09:57:57 +02:00
|
|
|
width: 100%;
|
|
|
|
height: 500px;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
#til-vid video {
|
|
|
|
width: 640px;
|
|
|
|
height: auto;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
2022-08-19 09:57:57 +02:00
|
|
|
|
|
|
|
#til-text {
|
|
|
|
margin-right: 10%;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
#til-text h1 {
|
|
|
|
font-size: 53px;
|
|
|
|
text-align: center;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
#til-text p {
|
|
|
|
font-family: "Sofia-Pro-Light";
|
|
|
|
font-size: 20px;
|
2022-08-13 16:15:08 +02:00
|
|
|
color: #cfe8f6;
|
2022-08-19 09:57:57 +02:00
|
|
|
text-align: center;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
#til-text a {
|
|
|
|
text-decoration: none;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
#til-text a div {
|
|
|
|
color: #1a1a2e;
|
|
|
|
font-family: "Sofia-Pro-Medium";
|
|
|
|
padding: 20px;
|
|
|
|
margin: 0px 20%;
|
|
|
|
margin-top: 40px;
|
2023-01-28 17:20:37 +01:00
|
|
|
border-radius: 0.2rem;
|
|
|
|
border: solid aquamarine;
|
2022-08-19 09:57:57 +02:00
|
|
|
background-color: aquamarine;
|
|
|
|
text-align: center;
|
2023-01-31 18:18:42 +01:00
|
|
|
transition: all 0.3s ease;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
#til-text a div:hover {
|
|
|
|
transform: scale(1.2);
|
2023-02-03 20:13:45 +01:00
|
|
|
background-color: #1a1a2e;
|
2023-01-28 17:20:37 +01:00
|
|
|
color: aquamarine;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
.configure {
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
height: 500px;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
#con-vid video {
|
|
|
|
width: 640px;
|
|
|
|
height: auto;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
#con-text {
|
|
|
|
margin-left: 10%;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
#con-text h1 {
|
|
|
|
font-size: 53px;
|
|
|
|
text-align: center;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
#con-text p {
|
2022-08-13 16:15:08 +02:00
|
|
|
font-family: "Sofia-Pro-Light";
|
|
|
|
font-size: 20px;
|
2022-08-19 09:57:57 +02:00
|
|
|
color: #cfe8f6;
|
|
|
|
text-align: center;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
#con-text a {
|
|
|
|
text-decoration: none;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
#con-text a div {
|
|
|
|
color: #1a1a2e;
|
2022-08-13 16:15:08 +02:00
|
|
|
font-family: "Sofia-Pro-Medium";
|
2022-08-19 09:57:57 +02:00
|
|
|
padding: 20px;
|
|
|
|
margin: 0px 20%;
|
|
|
|
margin-top: 40px;
|
2023-02-03 20:13:45 +01:00
|
|
|
border: solid aquamarine;
|
2023-01-28 17:20:37 +01:00
|
|
|
border-radius: 0.2rem;
|
2022-08-19 09:57:57 +02:00
|
|
|
background-color: aquamarine;
|
|
|
|
text-align: center;
|
2023-01-31 18:18:42 +01:00
|
|
|
transition: all 0.3s ease;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
#con-text a div:hover {
|
|
|
|
transform: scale(1.2);
|
2023-02-03 20:13:45 +01:00
|
|
|
background-color: #1a1a2e;
|
2023-01-28 17:20:37 +01:00
|
|
|
color: aquamarine;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
2023-01-31 18:18:42 +01:00
|
|
|
#con-text p a {
|
2022-08-19 09:57:57 +02:00
|
|
|
color: #cfe8f6;
|
|
|
|
text-decoration: underline;
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
}
|
2023-01-31 18:18:42 +01:00
|
|
|
#con-text p a:hover {
|
2022-08-13 16:15:08 +02:00
|
|
|
color: aquamarine;
|
|
|
|
}
|
2022-08-19 09:57:57 +02:00
|
|
|
#link-config-discord:hover {
|
|
|
|
color: #5865f2 !important;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
footer {
|
2023-01-31 18:18:42 +01:00
|
|
|
font-family: "Sofia-Pro-Light";
|
|
|
|
display: flex;
|
|
|
|
width: 80%;
|
|
|
|
font-size: 13px;
|
|
|
|
color: #a3a3a3a5;
|
|
|
|
margin: 0px 10%;
|
2022-08-19 09:57:57 +02:00
|
|
|
}
|
|
|
|
footer hr {
|
|
|
|
width: 80% !important;
|
2023-01-31 18:18:42 +01:00
|
|
|
}
|
2022-08-19 09:57:57 +02:00
|
|
|
footer a {
|
2023-01-31 18:18:42 +01:00
|
|
|
color: #a3a3a3a5;
|
2022-08-19 09:57:57 +02:00
|
|
|
text-decoration: none;
|
|
|
|
transition: all 0.3s ease;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
2022-08-19 09:57:57 +02:00
|
|
|
footer a:hover {
|
2023-01-31 18:18:42 +01:00
|
|
|
color: #cfe8f6;
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|
2023-04-10 13:30:03 +02:00
|
|
|
|
|
|
|
.features *, .top * {
|
|
|
|
line-height: 1.2em;
|
|
|
|
}
|
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
#devs {
|
|
|
|
max-width: 700px;
|
|
|
|
margin-top: 12px;
|
|
|
|
line-height: 1.5;
|
|
|
|
}
|
|
|
|
.footer-icons {
|
2022-08-13 16:15:08 +02:00
|
|
|
display: flex;
|
2023-01-31 18:18:42 +01:00
|
|
|
width: 116px;
|
2022-08-19 09:57:57 +02:00
|
|
|
height: 60px;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-top: 30px;
|
|
|
|
}
|
2022-11-01 15:45:56 +01:00
|
|
|
.footer-icons a svg {
|
2022-08-19 09:57:57 +02:00
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
|
|
|
margin-right: 30px;
|
|
|
|
}
|
|
|
|
|
2022-11-01 15:45:56 +01:00
|
|
|
.footer-icons a svg path {
|
|
|
|
transition: color 0.3s ease 0s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer-icons a svg:active path,
|
|
|
|
.footer-icons a svg:focus path,
|
|
|
|
.footer-icons a svg:hover path {
|
2023-01-31 18:18:42 +01:00
|
|
|
color: #cfe8f6;
|
|
|
|
}
|
|
|
|
#licence {
|
|
|
|
margin-top: 20px;
|
|
|
|
margin-bottom: 10px;
|
2022-11-01 15:45:56 +01:00
|
|
|
}
|
2023-02-26 17:49:35 +01:00
|
|
|
#mob-github {
|
|
|
|
display: none;
|
|
|
|
}
|
2022-08-19 09:57:57 +02:00
|
|
|
|
2023-02-26 17:49:35 +01:00
|
|
|
@media only screen and (max-width: 1170px) {
|
2022-08-19 09:57:57 +02:00
|
|
|
.nav__links,
|
|
|
|
.cta {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.menu {
|
|
|
|
display: initial;
|
|
|
|
}
|
|
|
|
.mob-menu {
|
|
|
|
display: flex;
|
2023-01-31 18:18:42 +01:00
|
|
|
margin-bottom: 8px;
|
2022-08-19 09:57:57 +02:00
|
|
|
}
|
2023-02-26 17:49:35 +01:00
|
|
|
#mob-github {
|
|
|
|
display: block;
|
|
|
|
}
|
2023-01-31 18:18:42 +01:00
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
.top {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
.text {
|
|
|
|
text-align: center;
|
|
|
|
padding-top: 130px;
|
|
|
|
padding-left: 0px;
|
|
|
|
margin-right: 0px;
|
|
|
|
width: 100%;
|
2023-01-31 18:18:42 +01:00
|
|
|
padding-bottom: 150px;
|
2022-08-19 09:57:57 +02:00
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
.text h2 {
|
|
|
|
font-size: 46px;
|
|
|
|
text-align: center;
|
2023-01-31 18:18:42 +01:00
|
|
|
width: 100%;
|
2023-02-26 17:49:35 +01:00
|
|
|
padding: 0 5%;
|
2022-08-19 09:57:57 +02:00
|
|
|
}
|
|
|
|
.text p {
|
|
|
|
font-size: 18px;
|
|
|
|
text-align: center;
|
|
|
|
padding: 0px 10%;
|
2023-01-31 18:18:42 +01:00
|
|
|
padding-top: 15px;
|
2022-08-19 09:57:57 +02:00
|
|
|
}
|
|
|
|
#install-hypr div {
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
#slide {
|
|
|
|
width: 640px;
|
|
|
|
height: auto;
|
|
|
|
align-items: center;
|
|
|
|
border: none;
|
|
|
|
margin-left: 10%;
|
|
|
|
margin-right: 10%;
|
|
|
|
}
|
|
|
|
#slide-content {
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.swiper {
|
|
|
|
width: 640px;
|
|
|
|
margin-left: 0px;
|
|
|
|
}
|
|
|
|
.features {
|
|
|
|
margin: 0px;
|
|
|
|
width: 100%;
|
2023-01-31 18:18:42 +01:00
|
|
|
padding-top: 200px;
|
2022-08-19 09:57:57 +02:00
|
|
|
text-align: center;
|
2023-01-31 18:18:42 +01:00
|
|
|
padding-bottom: 100px;
|
2022-08-19 09:57:57 +02:00
|
|
|
}
|
|
|
|
#features-text {
|
|
|
|
padding-bottom: 100px;
|
|
|
|
}
|
|
|
|
.animation {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
#ani-text {
|
|
|
|
margin-left: 0px;
|
|
|
|
}
|
|
|
|
#ani-text h1 {
|
2023-01-31 18:18:42 +01:00
|
|
|
padding-top: 80px;
|
|
|
|
font-size: 42px;
|
2022-08-19 09:57:57 +02:00
|
|
|
}
|
|
|
|
#ani-text p {
|
|
|
|
margin: 0px 10%;
|
|
|
|
}
|
|
|
|
.tiling {
|
2023-01-31 18:18:42 +01:00
|
|
|
margin-top: 395px;
|
2022-08-19 09:57:57 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column-reverse;
|
|
|
|
}
|
|
|
|
#til-text {
|
|
|
|
margin-left: 0px;
|
|
|
|
}
|
|
|
|
#til-text h1 {
|
|
|
|
padding-top: 80px;
|
2023-01-31 18:18:42 +01:00
|
|
|
font-size: 42px;
|
2022-08-19 09:57:57 +02:00
|
|
|
}
|
|
|
|
#til-text p {
|
|
|
|
margin: 0px 10%;
|
|
|
|
}
|
2023-01-31 18:18:42 +01:00
|
|
|
#til-text {
|
|
|
|
margin-right: 0px;
|
|
|
|
}
|
2022-08-19 09:57:57 +02:00
|
|
|
.configure {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
.configure {
|
|
|
|
margin-top: 2%;
|
|
|
|
}
|
|
|
|
#con-text {
|
|
|
|
margin-left: 0px;
|
|
|
|
}
|
|
|
|
#con-text h1 {
|
2023-01-31 18:18:42 +01:00
|
|
|
padding-top: 80px;
|
|
|
|
font-size: 42px;
|
2022-08-19 09:57:57 +02:00
|
|
|
}
|
|
|
|
#con-text p {
|
|
|
|
margin: 0px 10%;
|
|
|
|
}
|
|
|
|
#con-vid video {
|
|
|
|
margin-top: 250px;
|
|
|
|
}
|
|
|
|
#con-text {
|
|
|
|
margin-right: 0px;
|
|
|
|
}
|
2023-01-31 18:18:42 +01:00
|
|
|
footer {
|
|
|
|
/* display: block; */
|
2022-09-27 19:32:16 +02:00
|
|
|
}
|
2023-01-31 18:18:42 +01:00
|
|
|
}
|
2022-08-19 09:57:57 +02:00
|
|
|
|
|
|
|
@media only screen and (max-width: 648px) {
|
|
|
|
header {
|
|
|
|
padding-left: 5px;
|
|
|
|
}
|
|
|
|
.logo img {
|
2022-09-27 19:32:16 +02:00
|
|
|
width: 160px;
|
2022-08-19 09:57:57 +02:00
|
|
|
height: auto;
|
|
|
|
}
|
2022-09-27 19:32:16 +02:00
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
.swiper-slide img {
|
|
|
|
width: 384px;
|
|
|
|
height: auto;
|
|
|
|
}
|
2023-01-31 18:18:42 +01:00
|
|
|
#install-hypr div {
|
2023-02-03 20:13:45 +01:00
|
|
|
width: 220px;
|
|
|
|
height: 40px;
|
|
|
|
}
|
|
|
|
#install-hypr div p {
|
|
|
|
font-size: 20px;
|
|
|
|
}
|
|
|
|
.text {
|
|
|
|
padding-top: 20%;
|
|
|
|
padding-bottom: 25%;
|
|
|
|
}
|
2022-08-19 09:57:57 +02:00
|
|
|
#slide {
|
|
|
|
width: 384px;
|
|
|
|
height: auto;
|
|
|
|
align-items: center;
|
|
|
|
border: none;
|
|
|
|
margin-left: 0px;
|
|
|
|
margin-right: 0px;
|
|
|
|
}
|
|
|
|
.swiper {
|
|
|
|
width: 384px;
|
|
|
|
margin-left: 0px;
|
|
|
|
}
|
|
|
|
#slide-content {
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
#ani-vid video {
|
|
|
|
width: 384px;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
#ani-text h1 {
|
|
|
|
margin: 0px 10%;
|
|
|
|
}
|
|
|
|
#til-vid video {
|
|
|
|
width: 384px;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
#con-vid video {
|
|
|
|
width: 384px;
|
|
|
|
height: auto;
|
|
|
|
}
|
2023-01-31 18:18:42 +01:00
|
|
|
|
2022-08-19 09:57:57 +02:00
|
|
|
.overlay a {
|
|
|
|
font-size: 20px;
|
|
|
|
}
|
|
|
|
.overlay .close {
|
|
|
|
font-size: 40px;
|
|
|
|
top: 15px;
|
|
|
|
right: 35px;
|
|
|
|
}
|
|
|
|
.mob-menu {
|
|
|
|
display: flex;
|
2023-02-03 20:13:45 +01:00
|
|
|
margin-bottom: 8px;
|
2022-08-19 09:57:57 +02:00
|
|
|
}
|
|
|
|
.get-started a div {
|
|
|
|
margin-left: 0px;
|
|
|
|
}
|
|
|
|
.footer-icons a img {
|
|
|
|
margin-right: 10px;
|
|
|
|
width: 30px;
|
|
|
|
height: 30px;
|
|
|
|
}
|
|
|
|
.footer-text {
|
|
|
|
max-width: 150px;
|
|
|
|
}
|
|
|
|
.footer-icons {
|
|
|
|
margin-left: 20%;
|
|
|
|
}
|
2022-09-27 19:32:16 +02:00
|
|
|
|
2023-02-03 20:13:45 +01:00
|
|
|
#close-id {
|
|
|
|
margin-right: 7px;
|
|
|
|
}
|
|
|
|
footer {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
.footer-text {
|
|
|
|
max-width: none;
|
|
|
|
}
|
|
|
|
.footer-icons {
|
|
|
|
display: flex;
|
|
|
|
width: fit-content;
|
|
|
|
height: 60px;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-top: 30px;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
.bi.bi-github {
|
|
|
|
margin-right: 30px;
|
|
|
|
}
|
|
|
|
.footer-icons a svg {
|
|
|
|
width: 30px;
|
|
|
|
height: 30px;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
#licence {
|
|
|
|
margin-top: 15px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
line-height: 1.5;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
2023-01-31 18:18:42 +01:00
|
|
|
}
|
2023-02-03 20:13:45 +01:00
|
|
|
@media only screen and (min-width: 1860px) {
|
|
|
|
#ani-text {
|
|
|
|
margin-left: auto;
|
|
|
|
max-width: 500px;
|
|
|
|
margin-top: 50px;
|
|
|
|
}
|
|
|
|
#til-text {
|
|
|
|
margin-right: auto;
|
|
|
|
max-width: 500px;
|
|
|
|
margin-top: 50px;
|
|
|
|
}
|
|
|
|
#con-text {
|
|
|
|
margin-left: auto;
|
|
|
|
max-width: 500px;
|
|
|
|
margin-top: 50px;
|
|
|
|
}
|
|
|
|
#ani-vid video {
|
|
|
|
width: 755px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#til-vid video {
|
|
|
|
width: 755px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#con-vid video {
|
|
|
|
width: 755px;
|
|
|
|
}
|
2023-01-31 18:18:42 +01:00
|
|
|
}
|
2023-02-03 20:13:45 +01:00
|
|
|
@media only screen and (min-width: 2200px) {
|
|
|
|
#ani-text {
|
|
|
|
margin-left: auto;
|
|
|
|
max-width: 700px;
|
|
|
|
margin-top: 80px;
|
|
|
|
}
|
|
|
|
#ani-text h1 {
|
|
|
|
font-size: 54px;
|
|
|
|
}
|
|
|
|
#ani-text p {
|
|
|
|
font-size: 26px;
|
|
|
|
}
|
|
|
|
#ani-text a div {
|
|
|
|
scale: 1.2;
|
|
|
|
}
|
|
|
|
#til-text {
|
|
|
|
margin-right: auto;
|
|
|
|
max-width: 700px;
|
|
|
|
margin-top: 80px;
|
|
|
|
margin-left: 3%;
|
|
|
|
}
|
|
|
|
#til-text h1 {
|
|
|
|
font-size: 54px;
|
|
|
|
}
|
|
|
|
#til-text p {
|
|
|
|
font-size: 26px;
|
|
|
|
}
|
|
|
|
#til-text a div {
|
|
|
|
scale: 1.2;
|
|
|
|
}
|
|
|
|
#con-text {
|
|
|
|
margin-left: auto;
|
|
|
|
max-width: 700px;
|
|
|
|
margin-top: 80px;
|
|
|
|
}
|
|
|
|
#con-text h1 {
|
|
|
|
font-size: 54px;
|
|
|
|
}
|
|
|
|
#con-text p {
|
|
|
|
font-size: 26px;
|
|
|
|
}
|
|
|
|
#con-text a div {
|
|
|
|
scale: 1.2;
|
|
|
|
}
|
|
|
|
|
|
|
|
.animation {
|
|
|
|
height: max-content;
|
|
|
|
}
|
|
|
|
#ani-vid video {
|
|
|
|
width: 80%;
|
|
|
|
height: auto;
|
|
|
|
padding-bottom: 100px;
|
|
|
|
}
|
|
|
|
.tiling {
|
|
|
|
height: max-content;
|
|
|
|
}
|
|
|
|
#til-vid video {
|
|
|
|
width: 80%;
|
|
|
|
height: auto;
|
|
|
|
padding-bottom: 100px;
|
|
|
|
margin-left: 25%;
|
|
|
|
}
|
|
|
|
.configure {
|
|
|
|
height: max-content;
|
|
|
|
}
|
|
|
|
#con-vid video {
|
|
|
|
width: 80%;
|
|
|
|
height: auto;
|
|
|
|
padding-bottom: 100px;
|
|
|
|
}
|
|
|
|
.top {
|
|
|
|
height: max-content;
|
|
|
|
}
|
|
|
|
.swiper-slide img {
|
|
|
|
width: 960px;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
#slide-content {
|
|
|
|
width: 960px;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
#slide {
|
|
|
|
width: max-content;
|
|
|
|
padding-bottom: 5%;
|
|
|
|
}
|
|
|
|
.text p {
|
|
|
|
font-size: 26px;
|
|
|
|
padding-top: 10px;
|
|
|
|
}
|
|
|
|
.text h2 {
|
|
|
|
font-size: 68px;
|
|
|
|
}
|
|
|
|
#install-hypr div {
|
|
|
|
scale: 1.2;
|
|
|
|
margin-left: 5%;
|
|
|
|
margin-top: 45px;
|
|
|
|
}
|
|
|
|
.text {
|
|
|
|
margin-top: 1%;
|
|
|
|
max-width: 800px;
|
|
|
|
}
|
|
|
|
#features-text {
|
|
|
|
font-size: 82px;
|
|
|
|
padding-bottom: 80px;
|
|
|
|
}
|
|
|
|
.footer-text * {
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
#devs {
|
|
|
|
max-width: 800px;
|
|
|
|
}
|
2023-01-31 18:18:42 +01:00
|
|
|
}
|
2023-02-03 20:13:45 +01:00
|
|
|
|
|
|
|
@media only screen and (min-width: 3000px) {
|
|
|
|
#ani-text {
|
|
|
|
margin-top: 5%;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
#ani-text h1 {
|
|
|
|
font-size: 72px;
|
|
|
|
}
|
|
|
|
#ani-text p {
|
|
|
|
font-size: 32px;
|
|
|
|
}
|
|
|
|
#ani-text a div {
|
|
|
|
scale: 1.3;
|
|
|
|
}
|
|
|
|
|
|
|
|
#til-text {
|
|
|
|
margin-top: 5%;
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
#til-text h1 {
|
|
|
|
font-size: 72px;
|
|
|
|
}
|
|
|
|
#til-text p {
|
|
|
|
font-size: 32px;
|
|
|
|
}
|
|
|
|
#til-text a div {
|
|
|
|
scale: 1.3;
|
|
|
|
}
|
|
|
|
#con-text {
|
|
|
|
margin-top: 5%;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
#con-text h1 {
|
|
|
|
font-size: 72px;
|
|
|
|
}
|
|
|
|
#con-text p {
|
|
|
|
font-size: 32px;
|
|
|
|
}
|
|
|
|
#con-text a div {
|
|
|
|
scale: 1.3;
|
|
|
|
}
|
|
|
|
.swiper-slide img {
|
|
|
|
width: 1377px;
|
|
|
|
}
|
|
|
|
#slide-content {
|
|
|
|
width: 1377px;
|
|
|
|
}
|
|
|
|
.text {
|
|
|
|
max-width: 1000px;
|
|
|
|
margin-top: 5%;
|
|
|
|
}
|
|
|
|
.text p {
|
|
|
|
font-size: 32px;
|
|
|
|
}
|
|
|
|
.text h2 {
|
|
|
|
font-size: 82px;
|
|
|
|
}
|
|
|
|
#install-hypr div {
|
|
|
|
scale: 1.3;
|
|
|
|
margin-left: 5%;
|
|
|
|
}
|
|
|
|
#features-text {
|
|
|
|
font-size: 96px;
|
|
|
|
}
|
|
|
|
.nav__links a,
|
|
|
|
.cta {
|
|
|
|
font-size: 28px;
|
|
|
|
}
|
|
|
|
.logo img {
|
|
|
|
width: 240px;
|
|
|
|
height: auto;
|
|
|
|
padding-right: 10px;
|
|
|
|
}
|
|
|
|
.footer-text * {
|
|
|
|
font-size: 20px;
|
|
|
|
}
|
|
|
|
#devs {
|
|
|
|
max-width: 1000px;
|
|
|
|
}
|
|
|
|
.text {
|
|
|
|
max-width: 1000px !important;
|
|
|
|
}
|
2023-01-31 18:18:42 +01:00
|
|
|
}
|
2023-02-03 20:13:45 +01:00
|
|
|
@media only screen and (min-width: 1700px) {
|
|
|
|
.text {
|
|
|
|
max-width: 800px;
|
|
|
|
}
|
2022-08-13 16:15:08 +02:00
|
|
|
}
|