mirror of
https://github.com/doocs/md.git
synced 2024-11-25 03:18:36 +08:00
126 lines
2.6 KiB
JavaScript
126 lines
2.6 KiB
JavaScript
|
let lupengTheme = {
|
||
|
BASE: {
|
||
|
'text-align': 'left',
|
||
|
'color': '#595959',
|
||
|
'line-height': '1.55em',
|
||
|
'letter-spacing': '0.06em'
|
||
|
},
|
||
|
BASE_BLOCK: {
|
||
|
'margin': '20px 10px'
|
||
|
},
|
||
|
block: {
|
||
|
h1: {
|
||
|
'font-size': '140%',
|
||
|
'text-align': 'center',
|
||
|
'font-weight': 'normal',
|
||
|
'margin': '80px 10px 40px 10px'
|
||
|
},
|
||
|
h2: {
|
||
|
'font-size': '140%',
|
||
|
'text-align': 'center',
|
||
|
'font-weight': 'normal',
|
||
|
'margin': '80px 10px 40px 10px'
|
||
|
},
|
||
|
h3: {
|
||
|
'font-weight': 'bold',
|
||
|
'font-size': '120%',
|
||
|
'margin': '40px 10px 20px 10px'
|
||
|
},
|
||
|
h4: {
|
||
|
'font-weight': 'bold',
|
||
|
'font-size': '100%',
|
||
|
'margin': '20px 10px 10px 10px'
|
||
|
},
|
||
|
p: {
|
||
|
'margin': '10px 10px',
|
||
|
'line-height': '1.6'
|
||
|
},
|
||
|
blockquote: {
|
||
|
'color': '#9a9a9a',
|
||
|
'padding-left': '10px',
|
||
|
// 'padding-top': '0.05px',
|
||
|
'background-color': '#fefefe',
|
||
|
'line-height': '1.6',
|
||
|
'border-left': '3px solid #dbdbdb',
|
||
|
'font-size': '15px',
|
||
|
'margin': '1em 0'
|
||
|
},
|
||
|
code: {
|
||
|
'font-size': '80%',
|
||
|
'overflow': 'auto',
|
||
|
'color': '#333',
|
||
|
'background': 'rgb(247, 247, 247)',
|
||
|
'border-radius': '2px',
|
||
|
'padding': '10px',
|
||
|
'line-height': '1.3',
|
||
|
'border': '1px solid rgb(236,236,236)',
|
||
|
'margin': '20px 0',
|
||
|
},
|
||
|
image: {
|
||
|
'border-radius': '4px',
|
||
|
'display': 'block',
|
||
|
'margin': '20px auto',
|
||
|
'width': '100%',
|
||
|
},
|
||
|
image_org: {
|
||
|
'border-radius': '4px',
|
||
|
'display': 'block',
|
||
|
},
|
||
|
ol: {
|
||
|
'margin-left': '0',
|
||
|
'padding-left': '20px'
|
||
|
},
|
||
|
ul: {
|
||
|
'margin-left': '0',
|
||
|
'padding-left': '20px',
|
||
|
'list-style': 'circle',
|
||
|
},
|
||
|
footnotes: {
|
||
|
'margin': '10px 10px',
|
||
|
'font-size': '14px'
|
||
|
}
|
||
|
},
|
||
|
inline: {
|
||
|
// inline element
|
||
|
listitem: {
|
||
|
'text-indent': '-20px',
|
||
|
'display': 'block',
|
||
|
'margin': '10px 10px',
|
||
|
},
|
||
|
codespan: {
|
||
|
'font-size': '0.8em',
|
||
|
'color': '#d14',
|
||
|
'background': '#fefefe',
|
||
|
'padding': '3px 5px 0px',
|
||
|
'margin': '0px 2px',
|
||
|
'border': '1px solid #ddd',
|
||
|
'border-radius': '3px',
|
||
|
},
|
||
|
link: {
|
||
|
'color': '#ff3502'
|
||
|
},
|
||
|
wx_link: {
|
||
|
'color': '#576b95',
|
||
|
'text-decoration': 'none'
|
||
|
},
|
||
|
strong: {
|
||
|
'font-weight': 'bold',
|
||
|
},
|
||
|
table: {
|
||
|
'border-collapse': 'collapse',
|
||
|
'margin': '20px 0',
|
||
|
},
|
||
|
thead: {
|
||
|
'background': 'rgba(0,0,0,0.05)',
|
||
|
},
|
||
|
td: {
|
||
|
'font-size': '80%',
|
||
|
'border': '1px solid #dfdfdf',
|
||
|
'padding': '4px 8px',
|
||
|
},
|
||
|
footnote: {
|
||
|
'font-size': '12px',
|
||
|
}
|
||
|
}
|
||
|
};
|