Last active
November 17, 2016 01:06
-
-
Save akiya64/f30c3635d838b1526cbda982dfc8e92e 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
| .top-flex-container { | |
| width: 1240px; | |
| height: 700px; | |
| margin: 9vh auto 0; | |
| display: -webkit-box; | |
| display: -moz-box; | |
| display: -webkit-flex; | |
| display: -ms-flexbox; | |
| display: box; | |
| display: flex; | |
| -webkit-box-orient: vertical; | |
| -moz-box-orient: vertical; | |
| -o-box-orient: vertical; | |
| -webkit-box-lines: multiple; | |
| -moz-box-lines: multiple; | |
| -o-box-lines: multiple; | |
| -webkit-flex-flow: column wrap; | |
| -ms-flex-flow: column wrap; | |
| flex-flow: column wrap; | |
| box-shadow: 5px 10px 10px -10px rgba(0, 0, 0, 0.8); | |
| /* min-height: 600px; */ | |
| /* height: 100%; */ | |
| } |
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
| box-shadow: 0px 15px 5px -5px rgba(160,180,180,0.5); | |
| border-radius: 10px; | |
| border: 1px solid skyblue; | |
| box-sizing: content-box; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment