53 lines
760 B
CSS
53 lines
760 B
CSS
|
|
.main {
|
|
width: 23vw;
|
|
max-width: 630px;
|
|
}
|
|
|
|
.topDiv {
|
|
background: #20284C;
|
|
border-radius: 20px 20px 0 0;
|
|
padding: 30px 20px;
|
|
}
|
|
|
|
.titleDiv {
|
|
display: flex;
|
|
width: 100%;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
color: #EBF4F1;
|
|
text-transform: uppercase;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.titleText {
|
|
padding-left: 10px;
|
|
font: bold 1.1em Arial, Sans-serif;
|
|
}
|
|
|
|
.plus {
|
|
margin-right: 20px;
|
|
}
|
|
|
|
.restart {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background: #FBFFF8;
|
|
color: #20284C;
|
|
border-radius: 50%;
|
|
aspect-ratio: 1;
|
|
width: 25px;
|
|
}
|
|
|
|
.titleLeft {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.postCalendar {
|
|
border-left: 2px solid #DDDCE4;
|
|
border-right: 2px solid #DDDCE4;
|
|
background: #fff;
|
|
}
|
|
|