This repository was archived by the owner on Nov 21, 2019. It is now read-only.
forked from wfwei/Notepad---Markdown-Highlighting
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbespinmarkdown.css
More file actions
138 lines (112 loc) · 2 KB
/
bespinmarkdown.css
File metadata and controls
138 lines (112 loc) · 2 KB
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
* {
margin:0;
padding:0;
font:13px/1.4 normal "DejaVu Sans Mono", monospace;
}
body {
max-width:50em;
padding:5em 4em 2em 7em;
background:hsl(21, 20%, 14%);
color:hsl(32, 20%, 68%);
}
::-moz-selection,
::selection {
background:hsl(25, 10%, 59%);
opacity:1;
}
h1, h2, h3, h4, h5, h6, p, ol, ul, blockquote, pre {
margin-bottom:1em;
}
h1, h2, h3, h4, h5, h6 {
margin-top:2.5em;
color:hsl(0, 0%, 97%);
}
h1,
h1+h2,
h2+h3,
h3+h4,
h4+h5,
h5+h6 { margin-top:0; }
h1:before, h2:before, h3:before, h4:before, h5:before, h6:before,
blockquote:before {
float:left;
margin-left: -2.3em;
padding-right: 1em;
color:hsla(0, 0%, 97%, 0.12);
}
h1:before { content:"#1"; }
h2:before { content:"#2"; }
h3:before { content:"#3"; }
h4:before { content:"#4"; }
h5:before { content:"#5"; }
h6:before { content:"#6"; }
ol, ul {
list-style: none;
}
ol {
counter-reset:li;
}
ol > li:before, ul li:before {
float:left;
padding-right:0.5em;
color:hsl(48, 77%, 56%);
}
ol > li:before {
content:counter(li)".";
counter-increment:li;
}
ul li:before {
content:"+";
}
li ol, li ul {
margin-left:1em;
}
blockquote {
color:hsl(0, 100%, 75%);
}
blockquote:before {
margin-top:0.1em;
content:"\201c\201d";
color:hsla(0, 100%, 75%, 0.25);
}
blockquote p {
margin-bottom:0.5em;
}
pre {
padding: 0.5em 0.5em 0.7em;
border-left: 1px dashed hsla(180, 33%, 38%, 0.3);
background-color: hsla(180, 33%, 38%, 0.1);
}
pre code {
background-color:transparent;
}
code {
background-color: hsla(180, 33%, 38%, 0.1);
font-family:"Courier New", Courier, monospace;
color:hsl(180, 33%, 38%);
}
a:link {
text-decoration:none;
color:hsl(203, 83%, 57%);
}
a:visited {
color:hsla(203, 83%, 57%, 0.70);
}
a:hover, a:focus {
border-bottom: 1px solid hsl(203, 83%, 57%);
}
a:focus {
background:hsla(203, 83%, 57%, 0.15);
outline:none;
}
a:active {
color:hsl(203, 83%, 90%);
}
strong {
font-weight:bold;
color:hsl(120, 100%, 75%);
}
em {
font-style:italic;
color:hsl(120, 100%, 75%);
}