Created
March 25, 2019 10:24
-
-
Save amitkeret/57907999d0262029f79212f3d0223254 to your computer and use it in GitHub Desktop.
responsive blurred image background
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
body | |
display flex | |
.image | |
width 30vw | |
height 80vh | |
margin auto | |
position relative | |
overflow hidden | |
&::before | |
&::after | |
content '' | |
position absolute | |
top 0 | |
left 0 | |
width 100% | |
height 100% | |
background-image url(https://images.unsplash.com/photo-1449426468159-d96dbf08f19f?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1500&q=80) | |
background-position center center | |
background-repeat no-repeat | |
&::before | |
background-size cover | |
filter blur(15px) | |
&::after | |
background-size contain | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment