43 lines
866 B
CSS
43 lines
866 B
CSS
#blog-content > h2 {
|
|
color: rgb(0, 49, 155);
|
|
font-weight: 700;
|
|
margin-top: 15px;
|
|
margin-bottom: 2px;
|
|
text-align: right !important;
|
|
}
|
|
#blog-content > p {
|
|
color: rgb(54, 54, 54);
|
|
font-weight: 400;
|
|
@apply leading-8 text-base;
|
|
text-align: right !important;
|
|
}
|
|
#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: 600;
|
|
margin-top: 15px;
|
|
margin-bottom: 2px;
|
|
font-size: 16px;
|
|
/* margin-right: 10px; */
|
|
@apply text-xl;
|
|
text-align: right !important;
|
|
}
|
|
|
|
#blog-content > img {
|
|
@apply rounded-xl mx-auto shadow-lg my-8;
|
|
}
|
|
|
|
#blog-content > iframe {
|
|
@apply rounded-xl mx-auto shadow-lg my-8;
|
|
}
|