Last active
November 16, 2016 23:28
-
-
Save gspice/1dbf492709b5ef36c721044456851f79 to your computer and use it in GitHub Desktop.
Styling used to implement circular images on my About page. Specifically styled for iPhone 6/7 and +Plus mobile screens.
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
.img-circular-about-us-1 { | |
width: 100%; | |
height: 220px; | |
background-image: url(/wp-content/uploads/2016/02/2012-card-insert.jpg); | |
background-size: cover; | |
display: block; | |
margin: 10px 0; | |
border-radius: 50%; | |
-webkit-border-radius: 50%; | |
-moz-border-radius: 50%; | |
border: 2px solid lighten($black, 80); | |
@include media($iphone6-screen-up) { | |
height: 263px; | |
} | |
@include media($iphone6plus-screen-up) { | |
height: 295px; | |
} | |
@include media($smaller-screen-up) { | |
float: left; | |
width: 300px; | |
height: 300px; | |
margin: 10px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment