18 lines
263 B
CSS
18 lines
263 B
CSS
body {
|
|
font-family: 'Inter', sans-serif;
|
|
background-color: #F8F9FA;
|
|
}
|
|
|
|
.post-card {
|
|
transition: transform .2s;
|
|
}
|
|
|
|
.post-card:hover {
|
|
transform: scale(1.02);
|
|
}
|
|
|
|
.post-content img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
border-radius: 0.5rem;
|
|
} |