Created
October 1, 2018 16:10
-
-
Save quangpro1610/5aa6bfc60e3b430fd08fb2aba928acd2 to your computer and use it in GitHub Desktop.
This file contains 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
* { | |
margin: 0; | |
padding: 0; | |
} | |
body { | |
background: #ccc; | |
font-family: arial, verdana, tahoma; | |
} | |
.accordian { | |
width: 805px; | |
height: 320px; | |
overflow: hidden; | |
margin: 100px auto; | |
box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.35); | |
-webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.35); | |
-moz-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.35); | |
} | |
.accordian ul { | |
width: 2000px; | |
} | |
.accordian li { | |
position: relative; | |
display: block; | |
width: 160px; | |
float: left; | |
border-left: 1px solid #888; | |
box-shadow: 0 0 25px 10px rgba(0, 0, 0, 0.5); | |
-webkit-box-shadow: 0 0 25px 10px rgba(0, 0, 0, 0.5); | |
-moz-box-shadow: 0 0 25px 10px rgba(0, 0, 0, 0.5); | |
transition: all 0.5s; | |
-webkit-transition: all 0.5s; | |
-moz-transition: all 0.5s; | |
} | |
.accordian ul:hover li { | |
width: 40px; | |
} | |
.accordian ul li:hover { | |
width: 640px; | |
} | |
.accordian li img { | |
display: block; | |
} | |
.image_title { | |
background: rgba(0, 0, 0, 0.5); | |
position: absolute; | |
left: 0; | |
bottom: 0; | |
width: 640px; | |
} | |
.image_title a { | |
display: block; | |
color: #fff; | |
text-decoration: none; | |
padding: 20px; | |
font-size: 16px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment