1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 22:05:06 +00:00
serenity/LibHTML/CSS/Default.css
Andreas Kling 7eef69ad4b LibHTML: Refactor to go from DOM -> styled tree -> layout tree.
Frame::layout() drives everything now, it takes the DOM contained in the
frame and puts it through the tree transformations.
2019-06-29 21:42:07 +02:00

38 lines
451 B
CSS

html {
display: block;
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;
}