25 lines
477 B
CSS
25 lines
477 B
CSS
/* trending_04.css */
|
|
.__PFX__-t4-tt {
|
|
font-size: 16px;
|
|
color: var(--primary-color);
|
|
margin-bottom: 12px;
|
|
}
|
|
.__PFX__-t4-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2,1fr);
|
|
gap: 14px;
|
|
}
|
|
@media(min-width:768px){
|
|
.__PFX__-t4-grid { grid-template-columns: repeat(4,1fr); }
|
|
}
|
|
.__PFX__-t4-img {
|
|
width: 100%;
|
|
aspect-ratio: 2/3;
|
|
border-radius: 10px;
|
|
object-fit: cover;
|
|
}
|
|
.__PFX__-t4-cap {
|
|
margin-top: 6px;
|
|
font-size: 13px;
|
|
}
|