]> git.quilime.com - notes.git/commitdiff
Sidebar transition. sidebar
authorGabriel Dunne <gdunne@quilime.com>
Wed, 30 Apr 2014 06:16:11 +0000 (23:16 -0700)
committerGabriel Dunne <gdunne@quilime.com>
Wed, 30 Apr 2014 06:16:11 +0000 (23:16 -0700)
css/component.css
css/main.css
index.html

index 36006cdfdd9742aa9a125fc76eee31b499797dce..640f3e0a7c66ca762ee836e3a65ffe9f7d3d459d 100755 (executable)
@@ -97,30 +97,6 @@ body,
        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 */
index 3e3ba1aec20513b0f1e5020bbfe2e6ce718d404e..37f69c97a2c3508a50c77142ad1df3df529f0d61 100755 (executable)
@@ -122,6 +122,23 @@ header {
   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;
@@ -208,6 +225,8 @@ header {
   text-decoration:none;
 }
 
+
+
 /*****************************************************************************/
 /*
 /* Posts
index 6a7bf2d3859956bf5aadc805922be0515cd1016d..30860ab104b6540c237c12cf5dc0e5df6c3e035a 100644 (file)
@@ -4,13 +4,11 @@ title: notes
 ---
 
 <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>