summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--_layouts/post.html4
-rw-r--r--static/css/screen.css30
2 files changed, 30 insertions, 4 deletions
diff --git a/_layouts/post.html b/_layouts/post.html
index 6abbda8..00156c1 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -2,9 +2,9 @@
layout: default
---
<div id="post">
- <h2><a href="{{ page.url }}" rel="bookmark" title="{{ page.title }}">{{ page.title }}</a></h2>
+ <h2 id="post_title"><a href="{{ page.url }}" rel="bookmark" title="{{ page.title }}">{{ page.title }}</a></h2>
<article>
- <div id="date">published <time datetime="{{ page.date }}" pubdate>{{ page.date | date_to_string }}</time></div>
+ <h4 id="date">published <time datetime="{{ page.date }}" pubdate>{{ page.date | date_to_string }}</time></h4>
{{ content }}
</article>
<hr />
diff --git a/static/css/screen.css b/static/css/screen.css
index 85d7de5..e4d6645 100644
--- a/static/css/screen.css
+++ b/static/css/screen.css
@@ -38,10 +38,12 @@ p {
a {
color: #00a;
+ text-decoration: none;
}
a:hover {
color: black;
+ text-decoration: none;
}
a:visited {
@@ -74,6 +76,7 @@ ul.posts span {
width: 50em;
margin: 3em auto 2em auto;
line-height: 1.5em;
+ -webkit-box-shadow: 0px 0px 10px #262526; -moz-box-shadow: 0px 0px 10px #262526; box-shadow: 0px 0px 10px #262526;
}
.title {
@@ -164,8 +167,31 @@ ul.posts span {
}
#date {
- font-size: 80%;
-}
+ font-size: 70%;
+ text-align: right;
+ margin-right: 1.7em;
+ margin-top: .7em;
+ margin-bottom: 4em;
+ font-weight: normal;
+}
+
+#post_title {
+ margin: .5em 1.1em .5em 1.1em;
+ text-align: left;
+ padding-bottom: .1em;
+ letter-spacing: 2px;
+ line-height: 1.8em;
+ border-bottom: 1px solid #ededed;
+ font-weight:bold;
+}
+
+#post_title a{
+ color:#424037;
+ -moz-transition: color .25s linear;
+ -webkit-transition: color .25s linear;
+ transition: color .25s linear;
+}
+#post_title a:hover{color:#E50;}
#related {
margin-top: 2em;