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