list-style: none;
}
-.st-menu h2 {
- margin: 0;
- padding: 1em;
- color: rgba(0,0,0,0.4);
- font-weight: 300;
-}
-
-.st-menu ul li a {
- display: block;
- padding: 1em 1em 1em 1.2em;
- outline: none;
- color: #000;
- text-transform: uppercase;
- letter-spacing: 1px;
- font-weight: 400;
- text-decoration:none;
-}
-
-.st-menu ul li a:hover {
- text-decoration:underline;
- background: rgba(0,0,0,0.8);
- color: #fff;
-}
-
/* Individual effects */
/* Effect 1: Slide in on top */
margin-bottom: 2em;
}
+.posts a {
+ display: block;
+ padding: 1em 1em 1em 1.2em;
+ outline: none;
+ color: #000;
+ text-transform: uppercase;
+ letter-spacing: 1px;
+ font-weight: 400;
+ text-decoration:none;
+}
+
+.posts li a:hover {
+ text-decoration:underline;
+ background: rgba(0,0,0,0.8);
+ color: #fff;
+}
+
.posts li {
font-family: lettergothic, sans;
font-size:1.2em;
text-decoration:none;
}
+
+
/*****************************************************************************/
/*
/* Posts
---
<div id="home">
-
<ul class="posts">
{% for post in site.posts %}
<li>
- <a title="{{ post.date | date_to_string }}" href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
+ <a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
-
</div>