diff --git a/public/css/main.less b/public/css/main.less index 6be6a44943..0fba6d8819 100644 --- a/public/css/main.less +++ b/public/css/main.less @@ -171,6 +171,10 @@ ul { .responsive-container { position: relative; padding-bottom: 56.25%; padding-top: 30px; height: 0; overflow: hidden; } .responsive-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } +.positive-5 { + margin-top: 5px; +} + .negative-45 { margin-top: -45px; margin-bottom: -45px; diff --git a/views/stories/comments.jade b/views/stories/comments.jade index 6508f14cbb..f916e041a5 100644 --- a/views/stories/comments.jade +++ b/views/stories/comments.jade @@ -26,38 +26,30 @@ $(div) .html( "
" + - "
" + + "
" + + "" + + "
" + + "
" + "
" + "
" + - "

" + - commentDetails.rank + - "

" + + commentDetails.body + "
" + "
" + - "
" + - "
" + - "" + - "
" + - "
" + - "
" + - "
" + - commentDetails.body + - "
" + - "
" + - "
" + - "
" + - "
" + - "commented " + moment(commentDetails.commentedOn).fromNow() + " by " + - "@" + commentDetails.author.username + "" + - "
" + - "
" + - "
" + - "
" + - "
" + + "
" + "
" + - "Reply" + + "
" + + "commented " + moment(commentDetails.commentedOn).fromNow() + " by " + + "@" + commentDetails.author.username + "" + + "
" + "
" + "
" + + "
" + + "
" + + "
" + + "Reply" + + "
" + + "
" + + "
" + "
" + "
" ) diff --git a/views/stories/hot-stories.jade b/views/stories/hot-stories.jade index c30cd444ab..382232655c 100644 --- a/views/stories/hot-stories.jade +++ b/views/stories/hot-stories.jade @@ -19,7 +19,7 @@ h3 $(li).html("
" + "
" + - "
" + + "
" + "" + rank + "" + "
" + "
" + diff --git a/views/stories/new-stories.jade b/views/stories/new-stories.jade index 6378303a5f..bf3f2c022e 100644 --- a/views/stories/new-stories.jade +++ b/views/stories/new-stories.jade @@ -17,31 +17,33 @@ h3 var linkedName = getLinkedName(data[i].storyLink); var rank = data[i].rank; - $(li).html("
" + - "
" + - "
" + - "" + rank + "" + - "
" + - "
" + - "
" + - "" + - "
" + - "
" + - "
" + - "" + - "
" + - "Posted " + - moment(data[i].timePosted).fromNow() + - " by @" + data[i].author.username + " " + - "
" + - "
" + - "
" + - "
" + - ""); + $(li) + .html( + "
" + + "
" + + "
" + + "" + rank + "" + + "
" + + "
" + + "
" + + "" + + "
" + + "
" + + "
" + + "" + + "
" + + "Posted " + + moment(data[i].timePosted).fromNow() + + " by @" + data[i].author.username + " " + + "" + + "
" + + "
" + ) $(li).appendTo($('#story-list')); } }); \ No newline at end of file