Added styling for answers with accepted answer and unanswered questions

This commit is contained in:
Reda Lemeden
2012-03-08 17:02:02 -05:00
parent 8944cecd73
commit c2ae8c4184
2 changed files with 18 additions and 0 deletions

View File

@@ -83,6 +83,8 @@ div.question-header {
&.question-delete {
color: $mit-red;
text-decoration: none;
cursor: pointer;
}
}

View File

@@ -198,6 +198,22 @@ ul.question-list, div#question-list {
}
&.answers {
&.accepted {
@include linear-gradient(#fff, lighten( #c4dfbe, 12% ));
border-color: #c4dfbe;
span, div {
color: darken(#c4dfbe, 35%);
}
}
&.no-answers {
span, div {
color: lighten($mit-red, 20%);
}
}
}
&.votes {