2022-06-14 19:43:35 +02:00
|
|
|
@import "../../../_global/style.css";
|
2022-06-14 22:51:00 +02:00
|
|
|
@import "../css/register_form.css";
|
2022-06-14 19:43:35 +02:00
|
|
|
|
|
|
|
/*Layer 0*/
|
2022-05-30 01:02:38 +02:00
|
|
|
html {
|
2022-06-17 16:57:06 +02:00
|
|
|
background-image: url(../src/tlo.jpg);
|
2022-05-30 01:02:38 +02:00
|
|
|
background-attachment: fixed;
|
|
|
|
background-size: cover;
|
|
|
|
|
2022-06-14 19:43:35 +02:00
|
|
|
font-family: Montserrat, serif;
|
2022-05-30 01:02:38 +02:00
|
|
|
}
|
|
|
|
|
2022-06-14 19:43:35 +02:00
|
|
|
* {
|
|
|
|
/* border: 2px solid red; */
|
|
|
|
box-sizing: border-box;
|
|
|
|
text-align: center;
|
2022-05-30 01:02:38 +02:00
|
|
|
}
|
|
|
|
|
2022-06-14 19:43:35 +02:00
|
|
|
/*layer 1*/
|
|
|
|
.container {
|
|
|
|
display: flex;
|
|
|
|
height: 100vh;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*Layer 2*/
|
|
|
|
.form {
|
2022-06-14 22:51:00 +02:00
|
|
|
width: 40%;
|
2022-06-14 19:43:35 +02:00
|
|
|
height: 60%;
|
|
|
|
background-color: #EBEBEB;
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
border-radius: 2%;
|
|
|
|
/*padding-top: 1%;*/
|
|
|
|
}
|
|
|
|
|
|
|
|
/*Layer 3*/
|
|
|
|
.reg_header {
|
|
|
|
height: 15%;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
/*padding-left: 50%;*/
|
|
|
|
|
|
|
|
/*margin-top: 0;*/
|
|
|
|
background-color: #ffffff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.registerBox {
|
2022-06-14 22:51:00 +02:00
|
|
|
width: 50%;
|
2022-06-14 19:43:35 +02:00
|
|
|
height: 60%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.reg_footer {
|
|
|
|
height: 10%;
|
|
|
|
width: 100%;
|
|
|
|
padding-top: 2%;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
background-color: #ffffff;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*Elements*/
|
|
|
|
.logoImg {
|
|
|
|
margin: 1% auto;
|
|
|
|
width: 20%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.myButton {
|
|
|
|
/*Outside*/
|
|
|
|
width: 50%;
|
|
|
|
display: inline-block;
|
|
|
|
border: 1px solid;
|
|
|
|
border-radius: 28px;
|
|
|
|
margin: 3% 25% 5% 25%;
|
|
|
|
|
|
|
|
/*Inside*/
|
|
|
|
padding: 15px 15px;
|
|
|
|
align-content: center;
|
|
|
|
|
|
|
|
/*text*/
|
|
|
|
font-family: Montserrat, serif;
|
|
|
|
font-style: normal;
|
|
|
|
font-size: 18px;
|
|
|
|
color: #ffffff;
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
|
|
/*Visual*/
|
|
|
|
background-color: #007C36;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2022-05-30 01:02:38 +02:00
|
|
|
|
2022-06-14 19:43:35 +02:00
|
|
|
/*##### LINKS TODO WITH HEADER #####*/
|
2022-05-30 01:02:38 +02:00
|
|
|
|
2022-06-14 19:43:35 +02:00
|
|
|
/* unvisited link */
|
|
|
|
a:link {
|
|
|
|
color: #000000;
|
2022-05-30 01:02:38 +02:00
|
|
|
}
|
|
|
|
|
2022-06-14 19:43:35 +02:00
|
|
|
/* visited link */
|
|
|
|
a:visited {
|
|
|
|
color: #000000;
|
2022-05-30 01:02:38 +02:00
|
|
|
}
|
|
|
|
|
2022-06-14 19:43:35 +02:00
|
|
|
/* mouse over link */
|
|
|
|
a:hover {
|
|
|
|
color: #818181;
|
2022-05-30 01:02:38 +02:00
|
|
|
}
|
|
|
|
|
2022-06-14 19:43:35 +02:00
|
|
|
/* selected link */
|
|
|
|
a:active {
|
|
|
|
color: #000000;
|
2022-06-14 22:51:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#closelog {
|
|
|
|
float: right;
|
2022-05-30 01:02:38 +02:00
|
|
|
}
|