1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-21 14:55:07 +00:00
serenity/Libraries/LibHTML/CSS/Default.css
Andreas Kling a768724270 LibHTML: Make <a> tags blue and underline by default
In the future, this should only apply to "a:link", but since we don't
have pseudo-classes yet, all "a" tags will do for now.
2019-09-28 22:57:46 +02:00

71 lines
891 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, h2 {
display: block;
font-family: Pebbleton;
font-weight: bold;
}
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 {
text-decoration: underline;
}
strong, b {
font-weight: bold;
}
p {
display: block;
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;
}
a {
color: #0000ff;
text-decoration: underline;
}