Skip to content

Commit

Permalink
添加默认模板表格支持 fixed issue typecho#342
Browse files Browse the repository at this point in the history
  • Loading branch information
fen committed Nov 20, 2014
1 parent 4bb88fa commit a0dedaf
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions usr/themes/default/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,13 @@ a:hover, a:active {
color: #444;
}
pre, code {
background: #F3F3F0;
background: #F3F3F3;
font-family: Menlo, Monaco, Consolas, "Lucida Console", "Courier New", monospace;
font-size: .92857em;
}
code { padding: 2px 4px; color: #B94A48; }
pre {
padding: 0;
border: 1px solid #ccc;
padding: 5px;
overflow: auto;
max-height: 400px;
}
Expand All @@ -47,6 +46,19 @@ blockquote {
border-left: 4px solid #F3F3F0;
}

table {
border: 1px solid #ddd;
width: 100%;
}
table th,
table td {
padding: 5px 10px;
border: 1px solid #eee;
}
table th {
background: #f3f3f3;
}

h1, h2, h3, h4, h5, h6 {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
Expand Down

0 comments on commit a0dedaf

Please sign in to comment.