education.scss 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. .education-section {
  2. .education-info-table {
  3. width: 100%;
  4. border: none;
  5. background: none;
  6. }
  7. .education-info-table tr:hover {
  8. background: none;
  9. }
  10. .education-info-table tr,
  11. .education-info-table th,
  12. .education-info-table td {
  13. border: none;
  14. padding: 0;
  15. background: none;
  16. }
  17. .timeframe {
  18. color: #8392a5;
  19. text-align: right;
  20. }
  21. h1 > span{
  22. margin-top: -55px; /* Size of fixed header */
  23. padding-bottom:55px;
  24. display: block;
  25. }
  26. .icon {
  27. width: 2rem;
  28. padding-left: 0;
  29. padding-right: 0;
  30. position: relative;
  31. }
  32. .icon .hline {
  33. position: absolute;
  34. left: 1rem;
  35. top: 0;
  36. background-color: #248aaa;
  37. height: 100%;
  38. width: 2px;
  39. }
  40. .education-info-table tr:first-child .hline {
  41. height: 65%;
  42. top: auto;
  43. }
  44. .education-info-table tr:last-child .hline {
  45. height: 50%;
  46. }
  47. .icon-holder {
  48. background-color: #248aaa;
  49. border-radius: 50%;
  50. height: 2rem;
  51. width: 2rem;
  52. padding: 0.2rem;
  53. text-align: center;
  54. color: #e5e9f2;
  55. position: relative;
  56. }
  57. .line {
  58. width: 5%;
  59. padding-left: 0;
  60. padding-right: 0;
  61. }
  62. .line div {
  63. height: 2px;
  64. /* width: 100%; */
  65. margin-right: -1px;
  66. background-color: #248aaa;
  67. }
  68. .degree-info {
  69. padding: 1rem;
  70. margin-top: 0.5rem;
  71. margin-bottom: 0.5rem;
  72. border-left: 2px solid #248aaa;
  73. border-top: 1px solid #c0ccda;
  74. border-bottom: 1px solid #c0ccda;
  75. border-right: 1px solid #c0ccda;
  76. border-radius: 5px;
  77. }
  78. .degree-info h5 {
  79. margin-bottom: 0.3rem;
  80. }
  81. .taken-courses table {
  82. margin-left: 1rem;
  83. width: 100%;
  84. transition: all 0.3s ease-out;
  85. background: none;
  86. border: none;
  87. }
  88. .taken-courses tr {
  89. height: auto !important;
  90. }
  91. .taken-courses tr,
  92. .taken-courses td,
  93. .taken-courses th {
  94. background: none;
  95. border: none;
  96. color: #212529;
  97. }
  98. .taken-courses th.course-name-header{
  99. width: 50%;
  100. }
  101. .taken-courses .hidden-course {
  102. display: none;
  103. transition: all 1s ease-out;
  104. }
  105. .taken-courses ul {
  106. margin-bottom: 0;
  107. }
  108. /*============ Education Alter Template =============*/
  109. .education-alt .degree-info {
  110. border-right: 2px solid #248aaa;
  111. }
  112. /* ============= Device specific fixes ======= */
  113. /* Large screens such as TV */
  114. @media only screen and (min-width: 1824px) {
  115. }
  116. /* Extra large devices (large desktops, 1200px and up) */
  117. @media (max-width: 1400px) {
  118. }
  119. @media (max-width: 1200px) {
  120. }
  121. /* IPad Pro */
  122. @media (max-width: 1024px) {
  123. .container {
  124. padding-left: 0;
  125. }
  126. }
  127. /* Large devices (desktops, 992px and up) */
  128. @media (max-width: 992px) {
  129. }
  130. /* Medium devices (tablets, 768px and up) */
  131. @media only screen and (max-width: 768px) {
  132. }
  133. /* Small devices (landscape phones, 576px and up) */
  134. @media only screen and (max-width: 576px) {
  135. padding-left: 0.5rem;
  136. padding-right: 0.5rem;
  137. .container {
  138. padding-right: 0;
  139. }
  140. .icon {
  141. display: none;
  142. }
  143. .line {
  144. display: none;
  145. }
  146. .timeframe {
  147. text-align: left;
  148. }
  149. }
  150. /* iPhoneX, iPhone 6,7,8 */
  151. @media only screen and (max-width: 375px) {
  152. }
  153. /* Galaxy S5, Moto G4 */
  154. @media only screen and (max-width: 360px) {
  155. }
  156. /* iPhone 5 or before */
  157. @media only screen and (max-width: 320px) {
  158. }
  159. }