-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsmd4.css
92 lines (81 loc) · 2.04 KB
/
smd4.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/*
* SmallMD4 . A parser for SMD language. Compatible markdown grammar.
* Copyright (C) 2019 shanghuo
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* SMD由上火(shanghuo)编写,山岚幽阳网站:www.snang.cc
* SMD1版本感谢网友fmq03协助测试,SMD4版本感谢网友MFC.jar提出的非常不错的建议
* 本程序(SMD4)基于GNU General Public License v3.0协议开源
*/
.smd4 a {
text-decoration: none;
color: #990000;
}
.smd4 a:hover {
color: #ff0000;
}
.smd4 h1,.smd4 h2,.smd4 h3,.smd4 h4,.smd4 h5,.smd4 h6 {
text-align: left;
margin: 1em;
}
.smd4 pre {
margin: 6px;
padding: 4px;
overflow: auto;
background-color: #dddddd;
}
.smd4 blockquote {
margin: 2px;
padding: 4px 8px 4px 8px;
font-size: 12px;
line-height: 18px;
border-left: 4px solid #999999;
background-color: #eeeeee;
opacity: 0.6;
}
.smd4 table {
background-color: #eeeeee;
}
.smd4 th {
text-align: center;
background-color: #dddddd;
}
.smd4 td {
background-color: #ffffff;
}
.smd4 code {
padding: 2px;
font-size: 12px;
line-height: 22px;
font-weight: normal;
background-color: #dddddd;
}
.smd4 em {
padding: 2px;
border-radius: 6px;
font-size: 16px;
line-height: 26px;
font-style: normal;
background-color: #fceef0;
color: #cc2550;
}
.smd4 strong {
padding: 2px;
border-radius: 6px;
font-size: 16px;
line-height: 26px;
font-weight: normal;
background-color: #f0f068;
}