30 lines
543 B
CSS
30 lines
543 B
CSS
.container {
|
|
width: max-content;
|
|
max-width: 280px;
|
|
height: 160px;
|
|
border-radius: 17px;
|
|
display: flex;
|
|
align-items: flex-end;
|
|
justify-content: center;
|
|
padding: 8px 12px;
|
|
background-repeat: no-repeat !important;
|
|
background-size: cover !important;
|
|
background-position: center !important;
|
|
background-color: #000 !important;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.text {
|
|
color: #b1b0b0;
|
|
font-weight: 400;
|
|
font-size: 17px;
|
|
line-height: 20px;
|
|
text-align: left;
|
|
}
|
|
|
|
.text > b {
|
|
color: #fff;
|
|
font-weight: 700;
|
|
font-size: 18px;
|
|
}
|