-
-
Save gmuraoka/da2a9935a1e1df3b38e6 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
| <style> | |
| .line { | |
| float: left; | |
| background: #C2DFFF; | |
| width: 2px; | |
| height: 200px; | |
| margin: 0px 0px 0px 10px; | |
| } | |
| .point { | |
| width: 20px; | |
| height: 20px; | |
| border-radius: 50%; | |
| background: #69D5F0; | |
| float: left; | |
| margin: 10px 0px 0px -11px; | |
| } | |
| .square { | |
| width: 8px; | |
| height: 8px; | |
| background: #fff; | |
| margin: 6px 0px 0px 6px; | |
| border-radius: 50%; | |
| } | |
| </style> | |
| <div class="timeline"> | |
| <div class="line"></div> | |
| <div class="point point1"> | |
| <div class="square"></div> | |
| </div> | |
| </div> | |
| <!-- View this gist working: http://jsfiddle.net/nuUex/1/ --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment