2022-06-14 19:43:35 +02:00
|
|
|
@import "../../_global/style.css";
|
2022-05-19 14:19:13 +02:00
|
|
|
|
2022-06-14 19:43:35 +02:00
|
|
|
/*Layer 0*/
|
2022-05-19 14:19:13 +02:00
|
|
|
html {
|
2022-06-14 22:51:00 +02:00
|
|
|
background-image: url(src/tlo_logowanie.png);
|
2022-05-19 14:19:13 +02:00
|
|
|
background-attachment: fixed;
|
|
|
|
background-size: cover;
|
2022-06-14 19:43:35 +02:00
|
|
|
|
|
|
|
font-family: Montserrat, serif;
|
2022-05-19 14:19:13 +02:00
|
|
|
}
|
|
|
|
|
2022-05-19 00:54:58 +02:00
|
|
|
* {
|
2022-06-14 19:43:35 +02:00
|
|
|
/*border: 2px solid red;*/
|
2022-05-19 00:54:58 +02:00
|
|
|
box-sizing: border-box;
|
|
|
|
text-align: center;
|
2022-06-14 19:43:35 +02:00
|
|
|
|
2022-05-19 00:54:58 +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*/
|
2022-05-19 00:54:58 +02:00
|
|
|
.form {
|
2022-06-14 19:43:35 +02:00
|
|
|
width: 40%;
|
2022-05-19 00:54:58 +02:00
|
|
|
height: 40%;
|
|
|
|
background-color: #EBEBEB;
|
|
|
|
display: flex;
|
2022-06-14 19:43:35 +02:00
|
|
|
flex-wrap: wrap;
|
|
|
|
|
2022-05-19 00:54:58 +02:00
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2022-06-14 19:43:35 +02:00
|
|
|
|
|
|
|
border-radius: 2%;
|
2022-05-19 00:54:58 +02:00
|
|
|
}
|
|
|
|
|
2022-06-14 19:43:35 +02:00
|
|
|
/*Layer 3*/
|
|
|
|
.login_header {
|
|
|
|
height: 20%;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
background-color: #ffffff;
|
2022-05-19 00:54:58 +02:00
|
|
|
}
|
|
|
|
|
2022-06-14 19:43:35 +02:00
|
|
|
|
|
|
|
.loginBox {
|
|
|
|
width: 40%;
|
2022-05-19 00:54:58 +02:00
|
|
|
display: flex;
|
2022-06-14 19:43:35 +02:00
|
|
|
flex-direction: column;
|
2022-05-19 00:54:58 +02:00
|
|
|
}
|
|
|
|
|
2022-06-14 19:43:35 +02:00
|
|
|
.login_footer {
|
|
|
|
height: 10%;
|
|
|
|
width: 100%;
|
|
|
|
padding-top: 1%;
|
2022-05-19 00:54:58 +02:00
|
|
|
|
2022-06-14 19:43:35 +02:00
|
|
|
background-color: #ffffff;
|
|
|
|
}
|
2022-05-19 00:54:58 +02:00
|
|
|
|
2022-06-14 19:43:35 +02:00
|
|
|
/*Elements*/
|
2022-05-19 00:54:58 +02:00
|
|
|
.myButton {
|
2022-06-14 19:43:35 +02:00
|
|
|
/*Outside*/
|
|
|
|
width: 50%;
|
2022-05-19 00:54:58 +02:00
|
|
|
display: inline-block;
|
|
|
|
cursor: pointer;
|
2022-06-14 19:43:35 +02:00
|
|
|
border-radius: 28px;
|
|
|
|
border: 1px solid;
|
|
|
|
margin: auto;
|
|
|
|
|
|
|
|
/*Inside*/
|
|
|
|
background-color: #007C36;
|
2022-05-19 00:54:58 +02:00
|
|
|
padding: 5px 15px;
|
2022-06-14 19:43:35 +02:00
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
/*Text*/
|
|
|
|
font-family: Montserrat, serif;
|
|
|
|
font-style: normal;
|
|
|
|
font-size: 18px;
|
|
|
|
color: #ffffff;
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.login_input {
|
|
|
|
text-align: left;
|
|
|
|
padding-top: 2%;
|
|
|
|
padding-bottom: 2%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.password_input {
|
|
|
|
text-align: left;
|
|
|
|
padding-top: 2%;
|
|
|
|
padding-bottom: 2%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logoImg {
|
|
|
|
margin: 1% auto;
|
|
|
|
width: 25%;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*##### LINKS TODO WITH HEADER #####*/
|
|
|
|
|
|
|
|
/* unvisited link */
|
|
|
|
a:link {
|
|
|
|
color: #000000;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* visited link */
|
|
|
|
a:visited {
|
|
|
|
color: #000000;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* mouse over link */
|
|
|
|
a:hover {
|
|
|
|
color: #818181;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* selected link */
|
|
|
|
a:active {
|
|
|
|
color: #000000;
|
|
|
|
}
|
|
|
|
|
2022-06-14 22:51:00 +02:00
|
|
|
#closelog {
|
|
|
|
float: right;
|
|
|
|
}
|