45 lines
718 B
CSS
45 lines
718 B
CSS
/*
|
|
* Custom Styles for the Blog
|
|
*/
|
|
body {
|
|
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
|
color: #212529;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: Georgia, 'Times New Roman', Times, serif;
|
|
}
|
|
|
|
.blog-header {
|
|
border-bottom: 1px solid #e5e5e5;
|
|
}
|
|
|
|
.blog-title {
|
|
font-size: 2.5rem;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.blog-post-title {
|
|
font-size: 2.25rem;
|
|
margin-bottom: 0.25rem;
|
|
}
|
|
|
|
.blog-post-meta {
|
|
margin-bottom: 1.25rem;
|
|
color: #6c757d;
|
|
}
|
|
|
|
.blog-post img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
border-radius: 0.25rem;
|
|
}
|
|
|
|
.blog-footer {
|
|
padding: 2.5rem 0;
|
|
color: #6c757d;
|
|
text-align: center;
|
|
background-color: #f8f9fa;
|
|
border-top: 1px solid #e5e5e5;
|
|
}
|