Fixing no image in featured article

This commit is contained in:
Asutosh Palai
2015-08-11 15:30:42 +05:30
parent 44d906124d
commit fa3642b582
5 changed files with 16 additions and 6 deletions

View File

@ -138,6 +138,10 @@ header {
-ms-transition: all 0.2s ease-in;
-o-transition: all 0.2s ease-in;
transition: all 0.2s ease-in; }
.cover img.hidden {
visibility: hidden;
height: 10em;
}
.cover .tag {
width: 100px;
position: absolute;

View File

@ -185,6 +185,11 @@ header {
opacity: 1;
@include transition(all, 0.2s, ease-in);
}
&.hidden {
visibility: hidden;
height: 10em;
}
}
.tag {
@ -404,4 +409,4 @@ footer {
&.center {
text-align: center;
}
}
}