Skip to content

Commit

Permalink
Removes the bullet point from the 'tag' pages
Browse files Browse the repository at this point in the history
  • Loading branch information
ecampidoglio committed Oct 11, 2017
1 parent 0aad775 commit 697e547
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 10 deletions.
6 changes: 5 additions & 1 deletion _includes/css/screen.css
Original file line number Diff line number Diff line change
Expand Up @@ -198,10 +198,14 @@ span.nowrap {
display: inline-block;
}

ul.posts.tag-posts {
#home #blog-posts {
margin-left: 6%;
}

#home #blog-posts li:before {
content: '';
}

ul.posts {
list-style-type: none;
margin-left: 3%;
Expand Down
2 changes: 1 addition & 1 deletion tag/autofixture/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ <h2>
</span>
AutoFixture
</h2>
<ul id="blog-posts" class="posts tag-posts">
<ul id="blog-posts" class="posts">
{% for post in site.posts %}
{% if post.categories contains 'autofixture' %}
<li>
Expand Down
2 changes: 1 addition & 1 deletion tag/dotnet/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ <h2>
</span>
.NET
</h2>
<ul id="blog-posts" class="posts tag-posts">
<ul id="blog-posts" class="posts">
{% for post in site.posts %}
{% if post.categories contains '.net' %}
<li>
Expand Down
2 changes: 1 addition & 1 deletion tag/gaming/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ <h2>
</span>
Gaming
</h2>
<ul id="blog-posts" class="posts tag-posts">
<ul id="blog-posts" class="posts">
{% for post in site.posts %}
{% if post.categories contains 'gaming' %}
<li>
Expand Down
2 changes: 1 addition & 1 deletion tag/mechanical-keyboards/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ <h2>
</span>
Mechanical keyboards
</h2>
<ul id="blog-posts" class="posts tag-posts">
<ul id="blog-posts" class="posts">
{% for post in site.posts %}
{% if post.categories contains 'mechanical-keyboards' %}
<li>
Expand Down
2 changes: 1 addition & 1 deletion tag/musings/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ <h2>
</span>
Musings
</h2>
<ul id="blog-posts" class="posts tag-posts">
<ul id="blog-posts" class="posts">
{% for post in site.posts %}
{% if post.categories contains 'musings' %}
<li>
Expand Down
2 changes: 1 addition & 1 deletion tag/programming/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ <h2>
</span>
Programming
</h2>
<ul id="blog-posts" class="posts tag-posts">
<ul id="blog-posts" class="posts">
{% for post in site.posts %}
{% if post.categories contains 'programming' %}
<li>
Expand Down
2 changes: 1 addition & 1 deletion tag/sql/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ <h2>
</span>
SQL
</h2>
<ul id="blog-posts" class="posts tag-posts">
<ul id="blog-posts" class="posts">
{% for post in site.posts %}
{% if post.categories contains 'sql' %}
<li>
Expand Down
2 changes: 1 addition & 1 deletion tag/technology/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ <h2>
</span>
Technology
</h2>
<ul id="blog-posts" class="posts tag-posts">
<ul id="blog-posts" class="posts">
{% for post in site.posts %}
{% if post.categories contains 'technology' %}
<li>
Expand Down
2 changes: 1 addition & 1 deletion tag/web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ <h2>
</span>
Web
</h2>
<ul id="blog-posts" class="posts tag-posts">
<ul id="blog-posts" class="posts">
{% for post in site.posts %}
{% if post.categories contains 'web' %}
<li>
Expand Down

0 comments on commit 697e547

Please sign in to comment.