Author
|
zPlus <->
2016-04-23 17:46:21
|
Committer
|
zPlus <->
2016-04-23 17:46:21
|
Commit
|
30c85e8
(patch)
|
Tree
|
ef6f50c
|
Parent(s)
|
|
Move <table> style to Markdowns' tables only
commits diff:
e744187..30c85e8
1 file changed,
28 insertions,
28 deletions
—
download
Diffstat
Diff options
+28/-28
M css/freepost.css
13
|
13
|
|
max-width: 100%;
|
14
|
14
|
|
}
|
15
|
15
|
|
|
16
|
|
- |
/* Style used to format Markdown tables */
|
17
|
|
- |
table
|
18
|
|
- |
{
|
19
|
|
- |
background: #fff;
|
20
|
|
- |
border-collapse: collapse;
|
21
|
|
- |
text-align: left;
|
22
|
|
- |
}
|
23
|
|
- |
|
24
|
|
- |
table th
|
25
|
|
- |
{
|
26
|
|
- |
border-bottom: 2px solid #6678b1;
|
27
|
|
- |
color: #039;
|
28
|
|
- |
font-weight: normal;
|
29
|
|
- |
padding: 0 1em;
|
30
|
|
- |
}
|
31
|
|
- |
|
32
|
|
- |
table td
|
33
|
|
- |
{
|
34
|
|
- |
border-bottom: 1px solid #ccc;
|
35
|
|
- |
color: #669;
|
36
|
|
- |
padding: .5em 1em;
|
37
|
|
- |
}
|
38
|
|
- |
|
39
|
|
- |
table tbody tr:hover td
|
40
|
|
- |
{
|
41
|
|
- |
color: #009;
|
42
|
|
- |
}
|
43
|
|
- |
|
44
|
16
|
|
html, body
|
45
|
17
|
|
{
|
46
|
18
|
|
background-color: #f5f8fa;
|
183
|
155
|
|
{
|
184
|
156
|
|
}
|
185
|
157
|
|
|
|
158
|
+ |
/* Style used to format Markdown tables */
|
|
159
|
+ |
.content > .post table
|
|
160
|
+ |
{
|
|
161
|
+ |
background: #fff;
|
|
162
|
+ |
border-collapse: collapse;
|
|
163
|
+ |
text-align: left;
|
|
164
|
+ |
}
|
|
165
|
+ |
|
|
166
|
+ |
.content > .post table th
|
|
167
|
+ |
{
|
|
168
|
+ |
border-bottom: 2px solid #6678b1;
|
|
169
|
+ |
color: #039;
|
|
170
|
+ |
font-weight: normal;
|
|
171
|
+ |
padding: 0 1em;
|
|
172
|
+ |
}
|
|
173
|
+ |
|
|
174
|
+ |
.content > .post table td
|
|
175
|
+ |
{
|
|
176
|
+ |
border-bottom: 1px solid #ccc;
|
|
177
|
+ |
color: #669;
|
|
178
|
+ |
padding: .5em 1em;
|
|
179
|
+ |
}
|
|
180
|
+ |
|
|
181
|
+ |
.content > .post table tbody tr:hover td
|
|
182
|
+ |
{
|
|
183
|
+ |
color: #009;
|
|
184
|
+ |
}
|
|
185
|
+ |
|
186
|
186
|
|
.content > .post > .title
|
187
|
187
|
|
{
|
188
|
188
|
|
font-size: 1.5em;
|