Created
January 8, 2019 13:52
-
-
Save cezarignat/319414b01b51ad829d07a065af93b78a to your computer and use it in GitHub Desktop.
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
.halfhalf { | |
display: table; | |
width: 100%; | |
} | |
.half { | |
position: relative; | |
display: table-cell; | |
width: 50%; | |
padding: 150px 120px; | |
background-position: center center; | |
background-size: cover; | |
background-repeat: no-repeat; | |
} | |
@media screen and (max-width: 992px) { | |
.halfhalf .half { | |
display: block; | |
width: 100%; | |
} | |
.half { padding: 20px; } | |
.half+.half.gridme { | |
float: right; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment