education.css 3.3 KB

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