Skip to content

Instantly share code, notes, and snippets.

@gmuraoka
Forked from gabriel-seb/facebook-timeline
Created July 4, 2014 02:14
Show Gist options
  • Select an option

  • Save gmuraoka/da2a9935a1e1df3b38e6 to your computer and use it in GitHub Desktop.

Select an option

Save gmuraoka/da2a9935a1e1df3b38e6 to your computer and use it in GitHub Desktop.
<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