mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 18:02:05 -05:00
LibHTML: Tweak the default CSS style
This commit is contained in:
parent
db8a1a6aba
commit
8a2beaf52b
1 changed files with 26 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue