web/components/Blog/BlogComponents/styleBlog.css

40 lines
771 B
CSS
Raw Normal View History

2024-05-24 16:39:21 +03:30
#blog-content > h2 {
2024-04-25 22:36:36 +03:30
color: rgb(0, 49, 155);
font-weight: 700;
margin-top: 15px;
margin-bottom: 2px;
2024-05-24 16:39:21 +03:30
font-size: 16px;
2024-04-25 22:36:36 +03:30
}
2024-05-24 16:39:21 +03:30
#blog-content > p {
2024-04-25 22:36:36 +03:30
color: rgb(54, 54, 54);
font-weight: 400;
2024-05-24 16:39:21 +03:30
@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;
2024-04-25 22:36:36 +03:30
}
2024-05-24 16:39:21 +03:30
#blog-content > h3 {
color: rgb(216, 16, 16) !important;
font-weight: 400;
2024-04-25 22:36:36 +03:30
margin-top: 15px;
margin-bottom: 2px;
2024-05-24 16:39:21 +03:30
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;
2024-04-25 22:36:36 +03:30
}