-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPlainMark.css
93 lines (91 loc) · 1.26 KB
/
PlainMark.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
93
.mark
{
font-size: 1.1rem;
line-height: 1.4rem;
}
.mark p:first-child
{
margin-top: 0;
}
.mark p:last-child
{
margin-bottom: 0;
}
.mark code
{
border: none;
padding: 0;
color: #375;
background-color: rgba(200,200,200,0.3);
white-space: pre-wrap;
}
.mark a
{
color: #08C;
text-decoration: none;
}
.mark a, .mark a:visited, .mark a:hover
{
color: #00A;
}
.mark pre
{
background-color: #F5F5F5;
border: 1px solid rgba(0, 0, 0, 0.15);
border-radius: 4px 4px 4px 4px;
font-size: 1rem;
line-height: 1.05rem;
margin: 0 0 8px 0;
padding: 8px;
white-space: pre-wrap;
word-break: break-all;
word-wrap: break-word;
}
.mark pre > code
{
border: none;
padding: 0;
color: #375;
background-color: inherit;
}
.mark a
{
font-size: 95%;
}
.mark h1
{
font-size: 120%;
line-height: 120%;
}
.mark h2
{
font-size: 110%;
line-height: 110%;
}
.mark h3
{
font-size: 100%;
line-height: 100%;
font-style: italic;
}
.mark h1:first-child, .mark h2:first-child, .mark h3:first-child
{
margin-top: 0;
}
.mark li
{
line-height: 100%;
}
table
{
border-spacing: 8px;
}
td
{
padding: 8px;
}
td:first-child
{
border: 1px solid #CCC;
background-color: #EEE;
}