73 lines
1.1 KiB
CSS
73 lines
1.1 KiB
CSS
|
@import "../_global/header.css";
|
||
|
|
||
|
/*0 layer*/
|
||
|
body {
|
||
|
background-color: #EBEBEB;
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
/*1'st layer*/
|
||
|
.container {
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
display: flex;
|
||
|
justify-content: flex-end;
|
||
|
}
|
||
|
|
||
|
/*2'nd layer*/
|
||
|
.form {
|
||
|
/*Alignment*/
|
||
|
margin: auto;
|
||
|
width: 50%;
|
||
|
height: 800px;
|
||
|
|
||
|
/*Inside*/
|
||
|
padding-left: 40px;
|
||
|
padding-top: 15px;
|
||
|
|
||
|
/*Visual*/
|
||
|
background-color: #FFFFFF;
|
||
|
|
||
|
/*Others*/
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
/*Elements*/
|
||
|
.descriptor {
|
||
|
/* Size */
|
||
|
width: 326px;
|
||
|
height: 42px;
|
||
|
left: 254px;
|
||
|
top: 554px;
|
||
|
|
||
|
/* Alignment */
|
||
|
margin-bottom: 0;
|
||
|
margin-top: 0;
|
||
|
display: flex;
|
||
|
|
||
|
align-items: center;
|
||
|
|
||
|
/* Text */
|
||
|
font-family: 'Montserrat', serif;
|
||
|
font-size: 20px;
|
||
|
line-height: 42px;
|
||
|
color: #828282;
|
||
|
|
||
|
}
|
||
|
|
||
|
.myButton {
|
||
|
/*Button alignment*/
|
||
|
width: 25%;
|
||
|
height: 5%;
|
||
|
|
||
|
/*Button visual*/
|
||
|
border-radius: 25px;
|
||
|
cursor: pointer;
|
||
|
background-color: #007C36;
|
||
|
|
||
|
/*Text*/
|
||
|
font-family: Arial, serif;
|
||
|
font-size: 12px;
|
||
|
color: #ffffff;
|
||
|
}
|