41 lines
893 B
CSS
41 lines
893 B
CSS
.universe_card {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-box-direction: normal;
|
|
-ms-flex-direction: column;
|
|
flex-direction: column;
|
|
-webkit-box-pack: center;
|
|
-ms-flex-pack: center;
|
|
justify-content: center;
|
|
-ms-flex-line-pack: center;
|
|
align-content: center;
|
|
-webkit-box-align: center;
|
|
-ms-flex-align: center;
|
|
align-items: center;
|
|
margin-left: 30px;
|
|
height: 205px;
|
|
width: 205px;
|
|
background-color: #fff;
|
|
border-radius: 44px;
|
|
}
|
|
.universe_card_text {
|
|
color: #2a2a2a;
|
|
font-size: 24px;
|
|
font-style: normal;
|
|
font-weight: 500;
|
|
}
|
|
.universe_card_text span {
|
|
color: #50d400;
|
|
font-family: Inter;
|
|
font-size: 16px;
|
|
font-style: normal;
|
|
font-weight: 500;
|
|
line-height: normal;
|
|
}
|
|
.universe_icon {
|
|
height: 130px;
|
|
width: 130px;
|
|
}
|