35 lines
431 B
CSS
35 lines
431 B
CSS
|
|
.main {
|
|
border-bottom: 2px solid #DDDCE4;
|
|
}
|
|
|
|
.summary {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
height: 75px;
|
|
padding: 20px;
|
|
}
|
|
|
|
.left {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
.arrow {
|
|
margin-right: 10px;
|
|
transform: rotate(180deg);
|
|
}
|
|
|
|
.text {
|
|
font: 1.3em Arial, Sans-serif;
|
|
font-weight: 300;
|
|
color: #787495;
|
|
}
|
|
|
|
.right {
|
|
font: 1.3em Arial, Sans-serif;
|
|
font-weight: 600;
|
|
}
|
|
|