Created
February 2, 2015 15:27
-
-
Save ccurtin/d752a9a38ce99a6a5bfc to your computer and use it in GitHub Desktop.
Cropped and centered image featured image
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .featured-blog-img { | |
| @include column(1 / 1); | |
| float: left; | |
| clear: both; | |
| text-align: inherit; | |
| margin-left: 0%; | |
| margin-right: 3%; | |
| width: 100%; | |
| height: 200px; | |
| overflow: hidden; | |
| position: relative; | |
| img { | |
| @include transform(translate(-50%, -50%)); | |
| left: 50%; | |
| top: 50%; | |
| right: 0; | |
| width: 100%; | |
| position: absolute; | |
| overflow: hidden; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment