Browse Source

Change CSS class proj_desc to proj-desc

Fix #70
Talha Mansoor 11 years ago
parent
commit
a9e758c3c1
2 changed files with 2 additions and 2 deletions
  1. 1 1
      static/css/elegant.css
  2. 1 1
      templates/index.html

+ 1 - 1
static/css/elegant.css

@@ -606,7 +606,7 @@ ul.list-all-articles li time {
     font-size: 75%;
     font-weight: normal;
 }
-.proj_desc {
+.proj-desc {
     color: #999;
     font: .9em 'PT Sans', 'Helvetica Neue', Arial, Sans-Serif;
 }

+ 1 - 1
templates/index.html

@@ -31,7 +31,7 @@
             {% for project in PROJECTS %}
             <ul class="list-all-articles">
                 <li>
-                <a href="{{ project.url }}" title="{{ project.name }}">{{ project.name }}</a> <span class="proj_desc">{{ project.description }}</span>
+                <a href="{{ project.url }}" title="{{ project.name }}">{{ project.name }}</a> <span class="proj-desc">{{ project.description }}</span>
                 </li>
             </ul>
             {%endfor %}