education.css 3.0 KB

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