LibHTML: Tweak the default CSS style

This commit is contained in:
Sergey Bugaev 2019-09-25 12:43:26 +03:00 committed by Andreas Kling
parent db8a1a6aba
commit 8a2beaf52b

View file

@ -15,15 +15,26 @@ body {
margin-bottom: 8;
}
h1 {
h1, h2 {
display: block;
font-family: Pebbleton;
}
h3 {
display: block;
font-weight: bold;
}
pre {
display: block;
margin-bottom: 8;
margin-top: 8;
white-space: pre;
}
code {
font-family: Csilla;
font-weight: lighter;
}
u, ins {
@ -31,7 +42,7 @@ u, ins {
}
strong, b {
font-family: KaticaBold;
font-weight: bold;
}
p {
@ -39,3 +50,16 @@ p {
margin-bottom: 8;
margin-top: 8;
}
ul, ol {
display: block;
margin-top: 8;
margin-bottom: 8;
}
li {
display: list-item;
margin-left: 8;
margin-top: 2;
margin-bottom: 2;
}