37 lines
549 B
CSS
37 lines
549 B
CSS
|
@import "css/li.css";
|
||
|
@import "css/collapsible.css";
|
||
|
@import "css/round.css";
|
||
|
@import "../_global/header.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;
|
||
|
}
|