50 lines
767 B
CSS
50 lines
767 B
CSS
|
@import "header.css";
|
||
|
|
||
|
body {
|
||
|
background-color: #EBEBEB;
|
||
|
}
|
||
|
|
||
|
.form {
|
||
|
width: 50%;
|
||
|
height: 800px;
|
||
|
background-color: #FFFFFF;
|
||
|
/*form na środku strony*/
|
||
|
margin: auto;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
padding-left: 40px;
|
||
|
padding-top: 15px;
|
||
|
}
|
||
|
|
||
|
|
||
|
.container {
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
display: flex;
|
||
|
justify-content: flex-end;
|
||
|
}
|
||
|
|
||
|
.descriptor {
|
||
|
/* Kategorie */
|
||
|
width: 326px;
|
||
|
height: 42px;
|
||
|
left: 254px;
|
||
|
top: 554px;
|
||
|
|
||
|
margin-bottom: 0px;
|
||
|
margin-top: 0px;
|
||
|
|
||
|
/* H3 */
|
||
|
/*font-family: 'Montserrat';*/
|
||
|
font-size: 20px;
|
||
|
line-height: 42px;
|
||
|
|
||
|
/* identical to box height, or 150% */
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
|
||
|
/* DARK GREY */
|
||
|
color: #828282;
|
||
|
|
||
|
}
|