Created
September 25, 2013 20:44
-
-
Save gabriel-seb/6705765 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> | |
| body{ | |
| background: #E9F1FC; | |
| } | |
| .line { | |
| float: left; | |
| background: #C3CADA; | |
| width: 2px; | |
| height: 200px; | |
| margin: 0px 0px 0px 10px; | |
| } | |
| .point { | |
| width: 14px; | |
| height: 14px; | |
| border-radius: 50%; | |
| background: #E9F1FC; | |
| float: left; | |
| margin: 15px 0px 0px -8px; | |
| } | |
| .square { | |
| width: 8px; | |
| height: 8px; | |
| background: #C3CADA; | |
| margin: 3px 0px 0px 3px; | |
| border-radius: 50%; | |
| } | |
| </style> | |
| <div class="timeline"> | |
| <div class="line"></div> | |
| <div class="point point1"> | |
| <div class="square"></div> | |
| </div> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment