2022-05-19 00:54:58 +02:00
|
|
|
/* * {
|
|
|
|
border: 2px solid red;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
} */
|
|
|
|
|
2022-05-19 14:19:13 +02:00
|
|
|
input {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
html {
|
|
|
|
background-image: url(tlo_logowanie.png);
|
|
|
|
background-attachment: fixed;
|
|
|
|
background-size: cover;
|
|
|
|
}
|
|
|
|
|
2022-05-19 00:54:58 +02:00
|
|
|
* {
|
|
|
|
/* border: 2px solid red; */
|
|
|
|
box-sizing: border-box;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form {
|
|
|
|
width: 50%;
|
|
|
|
height: 40%;
|
|
|
|
background-color: #EBEBEB;
|
|
|
|
display: flex;
|
|
|
|
;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.login {
|
|
|
|
width: 40%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.container {
|
|
|
|
display: flex;
|
|
|
|
height: 100vh;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.myButton {
|
|
|
|
background-color: #14A6F9;
|
|
|
|
border-radius: 28px;
|
|
|
|
display: inline-block;
|
|
|
|
cursor: pointer;
|
|
|
|
color: #ffffff;
|
|
|
|
font-family: Arial;
|
|
|
|
font-size: 12px;
|
|
|
|
padding: 5px 15px;
|
|
|
|
width: 50%;
|
2022-05-31 10:56:44 +02:00
|
|
|
}
|