49 lines
899 B
CSS
49 lines
899 B
CSS
.overviewCard {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 12px;
|
|
background-color: #f2f3f4;
|
|
border-radius: 10px;
|
|
transform: translateY(0);
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
.overviewCard-icon {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 60px;
|
|
width: 60px;
|
|
border-radius: 50%;
|
|
font-size: 21px;
|
|
color: #fff;
|
|
}
|
|
|
|
.overviewCard-icon--document {
|
|
background-color: #e67e22;
|
|
}
|
|
|
|
.overviewCard-icon--calendar {
|
|
background-color: #27ae60;
|
|
}
|
|
|
|
.overviewCard-icon--mail {
|
|
background-color: #e74c3c;
|
|
}
|
|
|
|
.overviewCard-icon--photo {
|
|
background-color: #af64cc;
|
|
}
|
|
|
|
.overviewCard-description {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
/*.overviewCard-title {*/
|
|
/* font-size: calc(1.2875rem + 0.45vw);*/
|
|
/* color: #1BBAE1;*/
|
|
/* margin: 0;*/
|
|
/*}*/ |