experiences.css 1.8 KB

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