This repository has been archived on 2024-06-06. You can view files and clone it, but cannot push or open issues or pull requests.
markdown-css/markdown.css
2022-11-03 15:01:36 +01:00

63 lines
864 B
CSS

html {
font-family: 'Fira Sans';
font-size: 1.2rem;
}
h1, h2, h3, h4, h5, h6 {
font-weight: bold;
margin-top: 0.5em;
margin-bottom: 0.4em;
}
h1 {
border-bottom: 3px solid #444;
text-align: center;
font-size: 2.8em;
font-weight: bolder;
}
h2 {
border-bottom: 2px solid #555;
font-size: 2.3em;
}
h3 {
border-bottom: 1px solid #666;
font-size: 1.9em;
}
h4 {
border-bottom: 1px dashed #777;
font-size: 1.6em;
}
h5 {
border-bottom: 1px dashed #888;
font-size: 1.3em;
font-style: italic;
}
h6 {
font-size: 1.1em;
font-style: italic;
}
code {
font-family: 'Fira Code';
}
blockquote {
border-left: 5px solid #555;
padding-top: 1px;
padding-bottom: 1px;
padding-left: 1em;
margin-left: 0.3em;
font-style: italic;
}
/*
a {
font-style: italic
}
*/