49 lines
728 B
CSS
49 lines
728 B
CSS
@import "css/li.css";
|
|
@import "css/collapsible.css";
|
|
@import "css/round.css";
|
|
@import "../../../../_global/header.css";
|
|
@import "css/bookmarks.css";
|
|
|
|
|
|
body {
|
|
margin: 0;
|
|
/*padding: 10px;*/
|
|
/*line-height: 1.4em;*/
|
|
}
|
|
|
|
.dot {
|
|
height: 30px;
|
|
width: 30px;
|
|
color: white;
|
|
background-color: skyblue;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
|
|
height: 100%;
|
|
width: 100%;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
main {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.bookmarks {
|
|
/*Alignment*/
|
|
margin: auto;
|
|
width: 50%;
|
|
height: 5vh;
|
|
|
|
/*Others*/
|
|
justify-content: center;
|
|
align-items: center;
|
|
} |