2019-05-08 01:02:02 +02:00
|
|
|
.main {
|
2019-05-09 01:06:21 +02:00
|
|
|
margin-top: 7vh;
|
2019-05-08 01:02:02 +02:00
|
|
|
min-height: 222px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2019-05-09 00:58:05 +02:00
|
|
|
.preferences-link {
|
|
|
|
position: absolute;
|
|
|
|
right: 5%;
|
|
|
|
top: 1.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.preferences-link svg {
|
|
|
|
fill: #8b98a9;
|
2019-05-10 00:37:59 +02:00
|
|
|
transition: .2s ease-out;
|
2019-05-09 00:58:05 +02:00
|
|
|
width: 1.25rem;
|
|
|
|
height: 1.25rem;
|
|
|
|
}
|
|
|
|
|
2019-05-10 00:37:59 +02:00
|
|
|
.dark .preferences-link svg {
|
|
|
|
fill: #8b98a9;
|
|
|
|
opacity: .5;
|
|
|
|
}
|
|
|
|
|
2019-05-08 01:02:02 +02:00
|
|
|
.number-unit-wrap {
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: space-around;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.number-unit {
|
|
|
|
text-align: center;
|
|
|
|
flex: 1 1 20%;
|
|
|
|
margin-top: 5%;
|
|
|
|
padding-left: 2%;
|
|
|
|
padding-right: 2%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.label {
|
|
|
|
color: #8b98a9;
|
|
|
|
font-size: .85rem;
|
|
|
|
display: block;
|
|
|
|
white-space: nowrap;
|
|
|
|
margin-top: .3rem;
|
|
|
|
transition: color .2s ease-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
.number-unit-wrap--accounts {
|
|
|
|
min-height: 55px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.number-unit--main {
|
|
|
|
padding-bottom: 5%;
|
|
|
|
border-bottom: 1px solid #e2e2e2;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dark .number-unit--main {
|
|
|
|
border-bottom-color: #303030;
|
|
|
|
}
|
|
|
|
|
|
|
|
.number-unit--main .number {
|
|
|
|
font-size: 2.5rem;
|
|
|
|
}
|