summaryrefslogtreecommitdiff
path: root/assets/css/markdown.css
diff options
context:
space:
mode:
Diffstat (limited to 'assets/css/markdown.css')
-rw-r--r--assets/css/markdown.css36
1 files changed, 23 insertions, 13 deletions
diff --git a/assets/css/markdown.css b/assets/css/markdown.css
index 7d9b6b91..d56812dd 100644
--- a/assets/css/markdown.css
+++ b/assets/css/markdown.css
@@ -1,25 +1,37 @@
/* markdown content */
.markdown {
line-height: 1.4em;
+ font-size: 1.0em;
}
.markdown h1 {
margin-top: 5px;
margin-bottom: 10px;
- font-size: 2em;
- padding-bottom: 3px;
- border-bottom: 1px dotted #000;
+ font-size: 1.5em;
+ font-weight: bold;
+ text-decoration: underline;
}
.markdown h2 {
+ font-size: 1.2em;
+ font-weight: bold;
text-decoration: underline;
}
.markdown h3 {
- font-weight: bold;
+ font-size: 1.1em;
text-decoration: underline;
}
+.markdown h4 {
+ font-size: 1.1em;
+ text-decoration: underline;
+}
+
+.markdown p {
+ margin-bottom: 10px;
+}
+
.markdown ol,
.markdown ul {
margin-left: 25px;
@@ -28,20 +40,18 @@
}
.markdown pre {
- background: #fafafa;
+ background: #fdfdfd;
padding: 10px;
border-radius: 5px;
- border: 1px solid #ccc;
+ border: 1px solid #ddd;
overflow: auto;
- color: brown;
+ color: #444;
}
.markdown blockquote {
font-style: italic;
- border-left: 5px solid #ddd;
- padding-left: 8px;
-}
-
-.markdown p {
+ border-left: 3px solid #ddd;
+ padding-left: 10px;
margin-bottom: 10px;
-} \ No newline at end of file
+ margin-left: 20px;
+}