ladybird/Libraries/LibHTML/CSS/Default.css
Andreas Kling 04b9dc2d30 Libraries: Create top level directory for libraries.
Things were getting a little crowded in the project root, so this patch
moves the Lib*/ directories into Libraries/.
2019-07-04 16:16:50 +02:00

41 lines
518 B
CSS

html {
display: block;
font-family: Katica;
}
head, link, meta, script, style, title {
display: none;
}
body {
display: block;
margin-left: 8;
margin-top: 8;
margin-right: 8;
margin-bottom: 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;
}