59 lines
854 B
CSS
59 lines
854 B
CSS
@import "css/li.css";
|
|
@import "css/collapsible.css";
|
|
@import "css/round.css";
|
|
@import "../_global/header.css";
|
|
@import "bookmarks.css";
|
|
|
|
|
|
body {
|
|
margin: 0;
|
|
/*padding: 10px;*/
|
|
/*line-height: 1.4em;*/
|
|
}
|
|
|
|
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
flex-flow: row wrap;
|
|
|
|
height: 100%;
|
|
width: 100%;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
main {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.form {
|
|
/*Alignment*/
|
|
margin: auto;
|
|
width: 50%;
|
|
height: 75vh;
|
|
|
|
/*Inside*/
|
|
padding-left: 40px;
|
|
padding-top: 15px;
|
|
|
|
/*Visual*/
|
|
background-color: #FFFFFF;
|
|
|
|
/*Others*/
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
|
|
/*Po zalogowaniu*/
|
|
.dot {
|
|
height: 30px;
|
|
width: 30px;
|
|
color: white;
|
|
background-color: skyblue;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
} |