rp-schtuff

RPSchtuff Page Theme - Timeline

Jul 10th, 2019
1,379
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. /* TIMELINE CODE - by RPSchtuff */
  2.  
  3. /* INDIVIDUAL ENTRY */
  4. .tl {
  5. width:100%;
  6. height:auto;
  7. display:flex;
  8. }
  9.  
  10. /* DATE */
  11. .tl .date {
  12. width:25%;
  13. height:100%;
  14. text-align:right;
  15. margin-right:10px;
  16. /* styling for the date label below - add/remove/alter to suit your needs */
  17. color: #000;
  18. font-size:1.2em;
  19. text-transform:uppercase;
  20. font-weight:bold;
  21. }
  22.  
  23. /* CONTENT */
  24. .tl .content {
  25. width:calc(75% - 20px);
  26. padding-left:10px;
  27. border-left:1px solid #eeeeee; /* color of line */
  28. padding-bottom:20px; /* size of gap between entries */
  29. }
  30.  
  31. /* DOT ON LINE */
  32. .tl .content:before {
  33. content:"";
  34. position:absolute;
  35. margin-left:-14px;
  36. border-radius:100%;
  37. width:5px;
  38. height:5px;
  39. margin-top:4px; /* adjust as needed to align vertically on line */
  40. background-color: #ffffff; /* color of dot */
  41. border:1px solid #eeeeee; /* color of dot outline */
  42. }
  43.  
  44. /* this removes the gap from under your final entry */
  45. .tl:last-of-type .content {
  46. padding-bottom:0;
  47. }
Add Comment
Please, Sign In to add comment