mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
LibHTML: Add a basic default UA stylesheet.
We can't parse this yet, but we have to start somewhere. :^)
This commit is contained in:
parent
02e02ca3a5
commit
85d71024f7
Notes:
sideshowbarker
2024-07-19 13:32:03 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/85d71024f7f
1 changed files with 38 additions and 0 deletions
38
LibHTML/CSS/Default.css
Normal file
38
LibHTML/CSS/Default.css
Normal file
|
@ -0,0 +1,38 @@
|
|||
html {
|
||||
display: inline;
|
||||
font-family: Katica;
|
||||
}
|
||||
|
||||
head, link, meta, script, style, title {
|
||||
display: none;
|
||||
}
|
||||
|
||||
body {
|
||||
display: block;
|
||||
margin: 8;
|
||||
}
|
||||
|
||||
h1 {
|
||||
display: block;
|
||||
font-family: Pebbleton;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
pre {
|
||||
display: block;
|
||||
font-family: Csilla;
|
||||
}
|
||||
|
||||
u, ins {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
strong, b {
|
||||
font-family: KaticaBold;
|
||||
}
|
||||
|
||||
p {
|
||||
display: block;
|
||||
margin-bottom: 8;
|
||||
margin-top: 8;
|
||||
}
|
Loading…
Reference in a new issue