Remove "float: left" from article-meta and article-content classes, since they are not really needed anyway and somtimes produce strange artifacts. Reduce the padding of these classes from 5 to 4%. Add styles for the relative links.
This commit is contained in:
parent
2a7b86199c
commit
73fd74b5d6
1 changed files with 14 additions and 3 deletions
|
@ -63,11 +63,10 @@ span.paren6:hover { color : inherit; background-color : #FFBAFF; }
|
|||
}
|
||||
|
||||
.article-meta, .article-content {
|
||||
float: left;
|
||||
margin-left: 0em;
|
||||
margin-right: 0em;
|
||||
width: 90%;
|
||||
padding-left: 5%;
|
||||
padding-left: 4%;
|
||||
}
|
||||
|
||||
.article, .article-content {
|
||||
|
@ -82,6 +81,18 @@ span.paren6:hover { color : inherit; background-color : #FFBAFF; }
|
|||
width: 100%;
|
||||
}
|
||||
|
||||
.relative-nav {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.relative-nav > a#prev-link {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.relative-nav > a#next-link {
|
||||
float: right;
|
||||
}
|
||||
|
||||
#coleslaw-logo {
|
||||
float: none;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue