This commit is contained in:
Raymond Wanyoike 2014-10-29 17:49:01 +00:00
commit 49b3642921
3 changed files with 108 additions and 103 deletions

File diff suppressed because one or more lines are too long

View file

@ -29,6 +29,10 @@ samp {
font-family: @monospace; font-family: @monospace;
} }
pre {
border: none;
}
a { a {
.transition(color 0.2s ease-in-out); .transition(color 0.2s ease-in-out);
color: #2e2e2e; color: #2e2e2e;
@ -40,6 +44,10 @@ a {
} }
} }
.container {
max-width: 970px;
}
.header { .header {
background-color: #efefef; background-color: #efefef;
border-bottom: 1px solid #ddd; border-bottom: 1px solid #ddd;
@ -86,8 +94,8 @@ a {
.post { .post {
font-size: 16px; font-size: 16px;
&.mini-post { &.mini-post {
padding: 30px 0;
border-bottom: 1px solid #ddd; border-bottom: 1px solid #ddd;
padding: 30px 0;
&:last-child { &:last-child {
border-bottom: none; border-bottom: none;
} }
@ -102,23 +110,21 @@ a {
font-size: 18px; font-size: 18px;
} }
} }
&.full-post { .post-content {
* img { img {
max-width: 940px; display: block;
height: auto;
max-width: 100%;
width: 100% \9;
}
pre,
img {
.border-radius(4px);
} }
} }
} }
// .highlight {
// width: 600px;
// margin-left: 50px;
// margin-bottom: 20px;
// overflow: auto;
// border: 1px solid grey;
// border-radius: 5px;
// }
.separator { .separator {
margin-top: 30px;
margin-bottom: 30px; margin-bottom: 30px;
margin-top: 30px;
} }