education.css 3.5 KB

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