Created
March 2, 2019 13:29
-
-
Save andrzejewsky/d5d1aea3fba6fbe02b36795ed0a9ec2e to your computer and use it in GitHub Desktop.
Neftlic slider content styles
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
.content { | |
margin-top: 40px; | |
height: 300px; | |
position: relative; | |
} | |
.background { | |
display: flex; | |
height: 100%; | |
} | |
.left { | |
background: black; | |
width: 30%; | |
position: relative; | |
} | |
.left:before { | |
content: ''; | |
position: absolute; | |
background-image: linear-gradient(to right,#000,transparent); | |
top: 0; | |
bottom: 0; | |
left: 100%; | |
width: 275px; | |
} | |
.right { | |
background: green; | |
width: 70%; | |
} | |
.content-container { | |
color: white; | |
position: absolute; | |
top: 0; | |
left: 0; | |
right: 0; | |
bottom: 0; | |
padding: 30px | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment