19 lines
243 B
CSS
19 lines
243 B
CSS
|
img {
|
||
|
/* Prevent images in blog posts from getting too big */
|
||
|
max-width: 800px;
|
||
|
}
|
||
|
|
||
|
.post-list-item {
|
||
|
display: block;
|
||
|
max-width: 800px;
|
||
|
}
|
||
|
|
||
|
.post {
|
||
|
display: block;
|
||
|
max-width: 800px;
|
||
|
}
|
||
|
|
||
|
.post-title {
|
||
|
color: #3498db;
|
||
|
}
|