_timeline.scss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. .timeline-box {
  2. margin: 0 0 45px;
  3. padding: 0;
  4. position: relative;
  5. &:before {
  6. border-radius: .25rem;
  7. background-color: #dee2e6;
  8. bottom: 0;
  9. content: "";
  10. left: 31px;
  11. margin: 0;
  12. position: absolute;
  13. top: 0;
  14. width: 4px;
  15. }
  16. > div {
  17. margin-bottom: 15px;
  18. margin-right: 10px;
  19. position: relative;
  20. &:before, &:after {
  21. content: "";
  22. display: table;
  23. }
  24. &.timeline-label {
  25. & > span {
  26. border-radius: 4px;
  27. background-color: #fff;
  28. display: inline-block;
  29. font-weight: 600;
  30. padding: 5px;
  31. }
  32. &:before{
  33. width:0;
  34. }
  35. }
  36. .timeline-item {
  37. box-shadow: 0 0 1px rgb(0 0 0 / 13%), 0 1px 3px rgb(0 0 0 / 20%);
  38. border-radius: .25rem;
  39. background-color: #fff;
  40. color: #495057;
  41. margin-left: 60px;
  42. margin-right: 15px;
  43. margin-top: 0;
  44. padding: 0;
  45. position: relative;
  46. &:not(:last-child) {
  47. margin-bottom: 15px;
  48. }
  49. .time {
  50. color: #999;
  51. float: right;
  52. font-size: 12px;
  53. padding: 10px;
  54. }
  55. .timeline-header {
  56. border-bottom: 1px solid rgba(0,0,0,.125);
  57. color: #495057;
  58. font-size: 16px;
  59. line-height: 1.1;
  60. margin: 0;
  61. padding: 10px;
  62. }
  63. .timeline-body, .timeline-footer {
  64. padding: 10px;
  65. }
  66. }
  67. }
  68. }