experiences.css 1.8 KB

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