2022-05-30 23:26:22 +02:00
|
|
|
@import "li.css";
|
|
|
|
@import "collapsible.css";
|
|
|
|
@import "round.css";
|
2022-05-31 16:43:52 +02:00
|
|
|
@import "../../_global/header.css";
|
2022-05-30 23:26:22 +02:00
|
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
background-color: #C0C0C0;
|
|
|
|
font-family: sans-serif;
|
|
|
|
font-size: small;
|
|
|
|
padding: 10px;
|
|
|
|
line-height: 1.4em;
|
|
|
|
}
|
2022-05-19 23:32:26 +02:00
|
|
|
|
|
|
|
.dot {
|
|
|
|
height: 30px;
|
|
|
|
width: 30px;
|
|
|
|
color: white;
|
|
|
|
background-color: skyblue;
|
|
|
|
border-radius: 50%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.myButton {
|
|
|
|
background-color: #4C8BF5;
|
|
|
|
border-radius: 28px;
|
|
|
|
border: 1px solid #4C8BF5;
|
|
|
|
display: inline-block;
|
|
|
|
cursor: pointer;
|
|
|
|
color: #ffffff;
|
|
|
|
font-family: Arial;
|
|
|
|
font-size: 9px;
|
|
|
|
padding: 8px 13px;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
main {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|