Improve Markdown css
This commit is contained in:
parent
81df6a36b4
commit
67eae33fb8
|
|
@ -640,7 +640,8 @@ nav .active a {
|
|||
.page-header h2 {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-size: 140%;
|
||||
font-size: 1.4em;
|
||||
font-weight: bold;
|
||||
border-bottom: 1px dotted #ccc;
|
||||
}
|
||||
|
||||
|
|
@ -925,6 +926,11 @@ a.task-board-nobody {
|
|||
color: #333;
|
||||
}
|
||||
|
||||
.task-show-description {
|
||||
border-left: 4px solid #333;
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
.description-textarea {
|
||||
width: 99%;
|
||||
max-width: 99%;
|
||||
|
|
@ -1073,25 +1079,37 @@ tr td.task-orange,
|
|||
}/* 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;
|
||||
|
|
@ -1100,23 +1118,22 @@ tr td.task-orange,
|
|||
}
|
||||
|
||||
.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;
|
||||
}/* listing block */
|
||||
margin-left: 20px;
|
||||
}
|
||||
/* listing block */
|
||||
.listing {
|
||||
border-radius: 4px;
|
||||
padding: 8px 35px 8px 14px;
|
||||
|
|
|
|||
|
|
@ -60,7 +60,8 @@ nav .active a {
|
|||
.page-header h2 {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-size: 140%;
|
||||
font-size: 1.4em;
|
||||
font-weight: bold;
|
||||
border-bottom: 1px dotted #ccc;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -170,6 +170,11 @@ a.task-board-nobody {
|
|||
color: #333;
|
||||
}
|
||||
|
||||
.task-show-description {
|
||||
border-left: 4px solid #333;
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
.description-textarea {
|
||||
width: 99%;
|
||||
max-width: 99%;
|
||||
|
|
|
|||
Loading…
Reference in New Issue