Last active
September 6, 2016 06:54
-
-
Save linmic/d2183076e5f8fa4fc2b0f0d220cf03ae 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
| /* | |
| <figure> | |
| <img src={1x_image_url} srcset=`${1x_image_url} 1x, ${2x_image_url} 2x, ${3x_image_url} 3x` /> | |
| <figcaption>{figure caption}</figcaption> | |
| </figure> | |
| */ | |
| figure { | |
| display: block; | |
| max-width: 100%; | |
| img { | |
| display: block; | |
| width: 100%; | |
| } | |
| figcaption { | |
| font-size: 15px; | |
| line-height: 21px; | |
| display: block; | |
| text-align: left; | |
| padding: 0 3px; | |
| margin-top: 5px; | |
| color: #828282; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment