experiences.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. #experiences {
  2. padding-bottom: 1rem;
  3. }
  4. #experiences .timeline {
  5. margin-top: 1.5rem !important;
  6. }
  7. #experiences ul {
  8. padding-left: 1rem;
  9. }
  10. #experiences ul > li {
  11. margin-left: 0;
  12. color: #3c4858;
  13. }
  14. .circle {
  15. padding: 13px 20px;
  16. border-radius: 50%;
  17. background-color: #248aaa;
  18. color: #f9fafc;
  19. max-height: 50px;
  20. z-index: 2;
  21. }
  22. .timeline .vertical-line {
  23. align-self: stretch;
  24. }
  25. .timeline .vertical-line::after {
  26. content: "";
  27. position: absolute;
  28. border-left: 3px solid #248aaa;
  29. z-index: 1;
  30. height: 100%;
  31. left: 50%;
  32. }
  33. .vertical-line-left-adjustment::after {
  34. left: calc(50% - 3px) !important;
  35. }
  36. .timeline .horizontal-line div {
  37. padding: 0;
  38. height: 40px;
  39. }
  40. .timeline .horizontal-line hr {
  41. border-top: 3px solid #248aaa;
  42. margin: 0;
  43. top: 17px;
  44. position: relative;
  45. }
  46. .timeline .horizontal-line .timeline-side-div {
  47. display: flex;
  48. overflow: hidden;
  49. }
  50. .timeline .horizontal-line .corner {
  51. border: 3px solid #248aaa;
  52. width: 100%;
  53. position: relative;
  54. border-radius: 15px;
  55. }
  56. .top-left {
  57. left: -50%;
  58. top: -50%;
  59. }
  60. .top-right {
  61. left: 50%;
  62. top: -50%;
  63. }
  64. .bottom-left {
  65. left: -50%;
  66. top: calc(50% - 3px);
  67. }
  68. .bottom-right {
  69. left: 50%;
  70. top: calc(50% - 3px);
  71. }
  72. /* ============= Device specific fixes ======= */
  73. /* Extra small devices (portrait phones, less than 576px) */
  74. /* No media query for `xs` since this is the default in Bootstrap */
  75. /* Extra large devices (large desktops, 1200px and up) */
  76. @media (max-width: 1400px) {
  77. }
  78. @media (max-width: 1200px) {
  79. }
  80. /* Large devices (desktops, 992px and up) */
  81. @media (max-width: 992px) {
  82. }
  83. /* Medium devices (tablets, 768px and up) */
  84. @media only screen and (max-width: 768px) {
  85. }
  86. /* Small devices (landscape phones, 576px and up) */
  87. @media only screen and (max-width: 576px) {
  88. }