[CSS] Code blocks styling

This commit is contained in:
Eliseu Amaro 2021-12-09 14:49:58 +00:00 committed by Diogo Peralta Cordeiro
parent 4496d8d601
commit eb68ab6079
Signed by: diogo
GPG Key ID: 18D2D35001FBFAB0
1 changed files with 8 additions and 2 deletions

View File

@ -184,7 +184,6 @@ header ul li a {
margin-bottom: 1rem; margin-bottom: 1rem;
} }
ul li { ul li {
margin: 1rem; margin: 1rem;
margin-left: 2rem; margin-left: 2rem;
@ -192,12 +191,19 @@ ul li {
.subtitle { .subtitle {
margin-bottom: 2rem; margin-bottom: 2rem;
} }
blockquote {
pre, blockquote {
color: #666666; color: #666666;
margin: 0; margin: 0;
padding-left: 3em; padding-left: 3em;
border-left: 0.5em #EEE solid; border-left: 0.5em #EEE solid;
} }
pre {
font-family: monospace;
margin-bottom: 1rem;
white-space: pre;
overflow-x: scroll;
}
.footer { .footer {
margin-left: 15rem; margin-left: 15rem;
margin-top: auto; margin-top: auto;