2025-11-21 12:39:35 -07:00

78 lines
1.2 KiB
CSS
Executable File

.blogContent {
font-family: var(--font-sans);
color: #334155;
}
.blogContent p {
margin-bottom: 1.5rem;
line-height: 1.8;
font-size: 1.125rem;
}
.blogContent p.lead {
font-size: 1.5rem;
line-height: 1.6;
color: #0f172a;
font-weight: 500;
margin-bottom: 2.5rem;
}
.blogContent h2 {
font-size: 2rem;
font-weight: 800;
margin-top: 3.5rem;
margin-bottom: 1.5rem;
color: #0f172a;
letter-spacing: -0.02em;
line-height: 1.2;
}
.blogContent h3 {
font-size: 1.5rem;
font-weight: 700;
margin-top: 2.5rem;
margin-bottom: 1rem;
color: #0f172a;
}
.blogContent a {
color: #0066bf;
text-decoration: none;
border-bottom: 2px solid rgba(0, 102, 191, 0.2);
transition: all 0.2s ease;
}
.blogContent a:hover {
color: #004a8f;
border-bottom-color: #0066bf;
}
.blogContent ul,
.blogContent ol {
margin-left: 1.5rem;
margin-bottom: 2rem;
padding-left: 1rem;
}
.blogContent li {
margin-bottom: 0.75rem;
font-size: 1.125rem;
line-height: 1.7;
}
.blogContent blockquote {
border-left: 4px solid #0066bf;
padding-left: 1.5rem;
margin: 2.5rem 0;
font-style: italic;
font-size: 1.25rem;
color: #0f172a;
}
.blogContent img {
width: 100%;
height: auto;
border-radius: 0.25rem;
margin: 2.5rem 0;
}