Added styles for image alignment and other css bug fixes

This commit is contained in:
Shashank Mehta
2014-02-05 21:56:55 +05:30
parent c286958b84
commit fe6eeed937
2 changed files with 35 additions and 13 deletions

View File

@ -172,6 +172,7 @@ header {
width: 30%; width: 30%;
margin: 0 1.5%; margin: 0 1.5%;
margin-bottom: 50px; margin-bottom: 50px;
float: left;
box-sizing: border-box; box-sizing: border-box;
-moz-box-sizing: border-box; -moz-box-sizing: border-box;
-ms-box-sizing: border-box; } -ms-box-sizing: border-box; }
@ -191,6 +192,8 @@ header {
-ms-box-sizing: border-box; } -ms-box-sizing: border-box; }
.article:hover { .article:hover {
color: #333; } color: #333; }
.article:hover img.article-cover {
opacity: 1; }
.article a:hover { .article a:hover {
border: none; border: none;
color: #000; } color: #000; }
@ -211,13 +214,6 @@ header {
-ms-transition: all 0.2s ease-in; -ms-transition: all 0.2s ease-in;
-o-transition: all 0.2s ease-in; -o-transition: all 0.2s ease-in;
transition: all 0.2s ease-in; } transition: all 0.2s ease-in; }
.article img.article-cover:hover {
opacity: 1;
-webkit-transition: all 0.2s ease-in;
-moz-transition: all 0.2s ease-in;
-ms-transition: all 0.2s ease-in;
-o-transition: all 0.2s ease-in;
transition: all 0.2s ease-in; }
.article .tag { .article .tag {
width: 100px; width: 100px;
position: absolute; position: absolute;
@ -301,3 +297,14 @@ footer {
color: #333332; color: #333332;
text-align: center; text-align: center;
font-size: 0.9em; } font-size: 0.9em; }
.img {
padding: 10px 0px 10px 10px; }
.img.right img {
float: right;
width: 300px; }
.img.left img {
float: left;
width: 300px; }
.img.center {
text-align: center; }

View File

@ -232,6 +232,7 @@ header {
width: 30%; width: 30%;
margin: 0 1.5%; margin: 0 1.5%;
margin-bottom: 50px; margin-bottom: 50px;
float: left;
@include box-sizing(); @include box-sizing();
} }
@ -245,6 +246,9 @@ header {
&:hover { &:hover {
color: #333; color: #333;
img.article-cover {
opacity: 1;
}
} }
a:hover { a:hover {
@ -271,11 +275,6 @@ header {
width: 100%; width: 100%;
opacity: 0.8; opacity: 0.8;
@include transition(all, 0.2s, ease-in); @include transition(all, 0.2s, ease-in);
&:hover {
opacity: 1;
@include transition(all, 0.2s, ease-in);
}
} }
.tag { .tag {
@ -390,3 +389,19 @@ footer {
} }
// ============== /TEAM ============== // // ============== /TEAM ============== //
.img {
padding: 10px 0px 10px 10px;
&.right img{
float: right;
width: 300px;
}
&.left img{
float: left;
width: 300px;
}
&.center {
text-align: center;
}
}