web/components/Blog/BlogComponents/styleBlog.css

40 lines
771 B
CSS

#blog-content > h2 {
color: rgb(0, 49, 155);
font-weight: 700;
margin-top: 15px;
margin-bottom: 2px;
font-size: 16px;
}
#blog-content > p {
color: rgb(54, 54, 54);
font-weight: 400;
@apply leading-8 text-base;
}
#blog-content > li {
color: rgb(54, 54, 54);
font-weight: 400;
@apply leading-8 text-base;
}
#blog-content > a {
color: rgb(54, 54, 54);
font-weight: 400;
@apply leading-8 text-base text-blue-700 hover:text-blue-900;
}
#blog-content > h3 {
color: rgb(216, 16, 16) !important;
font-weight: 400;
margin-top: 15px;
margin-bottom: 2px;
font-size: 20px;
/* margin-right: 10px; */
}
#blog-content > img {
@apply rounded-xl mx-auto shadow-lg my-8;
}
#blog-content > iframe {
@apply rounded-xl mx-auto shadow-lg my-8;
}