Add little template to html blockquote tag

This commit is contained in:
Shinokuni 2024-04-13 16:34:34 +02:00
parent d486bd92f9
commit eeb054f068

View File

@ -88,6 +88,28 @@
padding-right: 3px;
padding-bottom: 10px;
}
blockquote {
width:60%%;
margin:30px auto;
padding:0px 3em;
border-left: 5px solid %1$s;
line-height: 1.6;
position: relative;
}
blockquote::before {
content: \"\\201C\";
color: %1$s;
font-size: 4em;
position: absolute;
left: 10px;
top: -10px;
}
blockquote::after{
content: \'\';
}
</style>
</head>