updated default css to include sane settings for tables and blockquotes
This commit is contained in:
parent
2c9adcc403
commit
464675146d
|
@ -1,23 +1,23 @@
|
|||
package initer
|
||||
|
||||
var defaultStyle string = `body {
|
||||
font-family: Arial,Helvetica,sans-serif;
|
||||
font-size : 12pt;
|
||||
max-width: 750px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
background-color : black;
|
||||
color: #E8E8E8;
|
||||
text-align:justify;
|
||||
padding-left: 1em;
|
||||
padding-right: 1em;
|
||||
font-family: Arial,Helvetica,sans-serif;
|
||||
font-size : 12pt;
|
||||
max-width: 750px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
background-color : black;
|
||||
color: #E8E8E8;
|
||||
text-align:justify;
|
||||
padding-left: 1em;
|
||||
padding-right: 1em;
|
||||
}
|
||||
|
||||
a {
|
||||
color : #0D0;
|
||||
color : #0D0;
|
||||
}
|
||||
a:hover {
|
||||
color : red;
|
||||
color : red;
|
||||
}
|
||||
a.linktopost {
|
||||
color: #E8E8E8;
|
||||
|
@ -27,7 +27,7 @@ a.categoryListing {
|
|||
color: #E8E8E8;
|
||||
}
|
||||
img {
|
||||
max-width: 100%;
|
||||
max-width: 100%;
|
||||
}
|
||||
div.blogpost {
|
||||
padding-bottom: 50px;
|
||||
|
@ -38,6 +38,12 @@ div.blogpost img {
|
|||
div.navigation {
|
||||
padding-bottom: 0.5em;
|
||||
}
|
||||
blockquote {
|
||||
margin-left: 1em;
|
||||
margin-right: 0;
|
||||
padding-left: 1em;
|
||||
border-left: 2px solid;
|
||||
}
|
||||
video {
|
||||
max-width: 50%;
|
||||
}
|
||||
|
@ -48,7 +54,13 @@ pre {
|
|||
overflow: auto;
|
||||
}
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
text-align: left;
|
||||
text-align: left;
|
||||
}
|
||||
th {
|
||||
padding-right: .5em;
|
||||
}
|
||||
td {
|
||||
padding-right: .5em;
|
||||
}
|
||||
`
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user