25 lines
483 B
CSS
25 lines
483 B
CSS
body {
|
|
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
|
background-color: #f8f9fa;
|
|
}
|
|
|
|
.navbar-brand {
|
|
font-family: Georgia, 'Times New Roman', Times, serif;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.post-card {
|
|
background-color: #ffffff;
|
|
border-radius: 8px;
|
|
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
|
|
transition: transform 0.2s;
|
|
}
|
|
|
|
.post-card:hover {
|
|
transform: translateY(-5px);
|
|
}
|
|
|
|
.post-title {
|
|
font-family: Georgia, 'Times New Roman', Times, serif;
|
|
}
|