This commit is contained in:
Oliver
2025-07-29 11:45:48 -03:00
parent 2e12c7e685
commit cd25240ad1
5 changed files with 84 additions and 3 deletions

View File

@@ -285,4 +285,50 @@ footer a:hover {
}
.blog-teaser {
border: 1px solid #ddd;
padding: 1rem;
margin-bottom: 1.5rem;
border-radius: 8px;
background: #fff;
max-width: 600px;
}
.blog-title {
margin: 0 0 0.3rem 0;
font-weight: 700;
color: #222;
}
.blog-date {
font-size: 0.8rem;
color: #888;
display: block;
margin-bottom: 0.8rem;
}
.blog-snippet {
font-size: 1rem;
line-height: 1.4;
color: #444;
margin-bottom: 1rem;
}
.blog-full-content p {
margin: 0.5rem 0;
color: #333;
}
.read-more-btn {
background: #007bff;
border: none;
color: white;
padding: 0.4rem 1rem;
border-radius: 5px;
cursor: pointer;
font-size: 0.9rem;
}
.read-more-btn:hover {
background: #0056b3;
}