Advertisement
Guest User

Untitled

a guest
Nov 28th, 2014
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. <ol id="timeline">
  2. <li class="event founded"></li>
  3. <li class="event grant"></li>
  4. </ol>
  5.  
  6.  
  7. #timeline {
  8. height: 500px;
  9. width: auto;
  10. margin: 0;
  11. background: red;
  12. }
  13.  
  14. .event {
  15. height: 500px;
  16. }
  17.  
  18. .founded {
  19. width: 400px;
  20. float: left;
  21. background: blue;
  22. }
  23.  
  24. .grant {
  25. width: 800px;
  26. background: yellow;
  27. }
  28.  
  29. .
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement