2020-05-04 12:35:27 +02:00
|
|
|
html{
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
|
|
|
|
}
|
|
|
|
|
|
|
|
body{
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
scroll-behavior: smooth;
|
|
|
|
font-family: 'Roboto', sans-serif;
|
|
|
|
}
|
|
|
|
|
2020-05-11 10:51:30 +02:00
|
|
|
body {
|
|
|
|
background: linear-gradient(-45deg, #ee7752, #23a6d5);
|
2020-05-11 12:10:22 +02:00
|
|
|
background-size: 100%;
|
2020-05-11 10:51:30 +02:00
|
|
|
}
|
|
|
|
|
2020-05-04 12:35:27 +02:00
|
|
|
.container{
|
|
|
|
width: 100%;
|
|
|
|
height: 100vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
#main h1{
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 4vw;
|
|
|
|
padding: 25vh 0;
|
|
|
|
animation: fadeup 1s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.container h1{
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 4vw;
|
|
|
|
padding: 15vh 0;
|
|
|
|
animation: fadeup 1s;
|
|
|
|
}
|
2020-05-11 10:51:30 +02:00
|
|
|
/*
|
|
|
|
.triangle-right {
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
border-top: 0px solid transparent;
|
|
|
|
border-left: 300px solid #0a89ac;
|
|
|
|
border-bottom: 130px solid transparent;
|
|
|
|
float: left;
|
|
|
|
animation : fade 0.5s;
|
|
|
|
}
|
2020-05-04 12:35:27 +02:00
|
|
|
|
2020-05-11 10:51:30 +02:00
|
|
|
.trapezoid {
|
|
|
|
border-bottom: 94px solid #e35d00;
|
|
|
|
border-left: 100px solid transparent;
|
|
|
|
border-right: 0px solid transparent;
|
|
|
|
height: 0;
|
|
|
|
width: 150px;
|
|
|
|
float: right;
|
|
|
|
animation : fade 0.5s;
|
|
|
|
}
|
|
|
|
*/
|
2020-05-04 12:35:27 +02:00
|
|
|
.container h2{
|
|
|
|
text-align: center;
|
|
|
|
animation: fade 2s;
|
|
|
|
font-size: 2vw;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes fade {
|
|
|
|
0%{opacity: 0}
|
|
|
|
100%{opacity: 1}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes fadeup {
|
|
|
|
0%{opacity: 0;margin-left: 10vw;}
|
|
|
|
100%{opacity: 1;margin-top: 0;}
|
|
|
|
}
|
|
|
|
|
|
|
|
label{
|
|
|
|
display: block;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 2.5vw;
|
|
|
|
padding: 5vh 0;
|
|
|
|
animation: fadeup 2s;
|
|
|
|
}
|
|
|
|
|
|
|
|
input{
|
|
|
|
display: block;
|
|
|
|
margin: auto;
|
|
|
|
border-top: transparent;
|
|
|
|
border-left: transparent;
|
|
|
|
border-right: transparent;
|
|
|
|
text-align: center;
|
|
|
|
padding: 1vw;
|
|
|
|
background-color: transparent;
|
|
|
|
border-bottom: 0.2vw solid rgba(69, 69, 69, 0.87);
|
|
|
|
color: black;
|
|
|
|
width: 50%;
|
|
|
|
animation: fadewidth 2s;
|
|
|
|
box-shadow: 0 0 0 transparent;
|
|
|
|
-webkit-transition: box-shadow 0.5s;
|
|
|
|
transition: box-shadow 0.5s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.error {
|
|
|
|
-webkit-animation: shake 0.2s ease-in-out 0s 2;
|
|
|
|
animation: shake 0.2s ease-in-out 0s 2;
|
|
|
|
box-shadow: 0 0 0.5em red;
|
|
|
|
}
|
|
|
|
|
|
|
|
input:hover{
|
|
|
|
border-bottom-right-radius: 20px;
|
|
|
|
transition-duration: 0.3s;
|
|
|
|
}
|
|
|
|
|
|
|
|
input:focus{
|
|
|
|
border-color: #057693;
|
|
|
|
transition-duration: 0.3s;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes fadewidth {
|
|
|
|
0%{width: 20%}
|
|
|
|
100%{width: 50%}
|
|
|
|
}
|
|
|
|
|
|
|
|
@-webkit-keyframes shake {
|
|
|
|
0% {
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
25% {
|
|
|
|
margin-left: 15vh;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
75% {
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: 15vh;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes shake {
|
|
|
|
0% {
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
25% {
|
|
|
|
margin-left: 15vh;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
75% {
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: 15vh;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.hide{
|
2020-05-11 12:10:22 +02:00
|
|
|
display : none;
|
2020-05-04 12:35:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
h2#cookie_text{
|
|
|
|
text-align: center;
|
|
|
|
font-size: 2.5vw;
|
2020-05-11 12:10:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#result_mail a {
|
|
|
|
color: #001bff;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|