Skip to content

Commit

Permalink
fixed timeline.css
Browse files Browse the repository at this point in the history
  • Loading branch information
Suremotoo committed Apr 22, 2019
1 parent ee58707 commit c886a0a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion assets/styles/lib/timelime.less
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
transition: all 0.3s ease;
width: 90%;
float: right;
h3 {
h3.timeline-title {
padding: 15px;
background: @primary-color;
color: #fff;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
transition: all 0.3s ease;
width: 90%;
float: right;
h3 {
h3.timeline-title {
padding: 15px;
background: @primary-color;
color: #fff;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<% posts.forEach(function(post) { %>
<%if (post.date.indexOf(year) !== -1) { %>
<div class="timeline-content">
<h3> <%= post.title %></h3>
<h3 class="timeline-title"> <%= post.title %></h3>
<p>
<%- post.abstract %>
</p>
Expand Down
2 changes: 1 addition & 1 deletion styles/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -2826,7 +2826,7 @@ li.pingback:first-child {
width: 90%;
float: right;
}
#timeline .timeline-item .timeline-content h3 {
#timeline .timeline-item .timeline-content h3.timeline-title {
padding: 15px;
background: #e44d4d;
color: #fff;
Expand Down
2 changes: 1 addition & 1 deletion templates/includes/post-list-archives.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<% posts.forEach(function(post) { %>
<%if (post.date.indexOf(year) !== -1) { %>
<div class="timeline-content">
<h3> <%= post.title %></h3>
<h3 class="timeline-title"> <%= post.title %></h3>
<p>
<%- post.abstract %>
</p>
Expand Down

0 comments on commit c886a0a

Please sign in to comment.