styles.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. * {
  2. overflow: visible !important;
  3. }
  4. body {
  5. margin: 0;
  6. font-family: 'Raleway', sans-serif;
  7. color: #2A2A2A;
  8. }
  9. h2 {
  10. font-weight: 600;
  11. text-transform: uppercase;
  12. }
  13. h3 {
  14. font-weight: 600;
  15. margin-bottom: 0;
  16. }
  17. h4 {
  18. margin: .5em 0;
  19. font-weight: 600;
  20. font-size: medium;
  21. display: inline-block;
  22. }
  23. h5 {
  24. margin-bottom: 0;
  25. font-size: medium;
  26. }
  27. h6 {
  28. margin-top: 5px;
  29. color: #aaa;
  30. font-weight: 400;
  31. font-size: small;
  32. font-family: 'Lora', sans-serif;
  33. margin-bottom: 1em;
  34. }
  35. small {
  36. color: #aaa;
  37. font-style: italic;
  38. font-family: 'Lora', serif;
  39. }
  40. .sidebar-section p {
  41. color: #aaa;
  42. margin: .3em 0;
  43. }
  44. .sidebar-section p span {
  45. color: #2A2A2A;
  46. display: block;
  47. }
  48. .ti-name {
  49. margin-bottom: 0;
  50. text-transform: uppercase;
  51. font-weight: 900;
  52. }
  53. .experience-wrapper {
  54. border-bottom: 1px solid #f0f0f0;
  55. padding-bottom: 10px;
  56. text-align: justify;
  57. }
  58. .experience-wrapper:last-child {
  59. border: none;
  60. padding: 0;
  61. }
  62. .experience-wrapper small {
  63. color: #2A2A2A;
  64. font-family: 'Raleway', sans-serif;
  65. font-style: normal;
  66. font-size: smaller;
  67. }
  68. .experience-wrapper p {
  69. margin: .5em 0;
  70. }
  71. .experience-wrapper ul {
  72. margin: .5em 0;
  73. }
  74. .experience-wrapper ul li {
  75. margin-bottom: .3em;
  76. }
  77. .experience-wrapper ul li:last-child {
  78. margin-bottom: 0;
  79. }
  80. ul.technology-list {
  81. list-style: none;
  82. margin: 0;
  83. padding: 0;
  84. display: inline-block;
  85. color: #777;
  86. font-size: small;
  87. }
  88. ul.technology-list li {
  89. display: inline-block;
  90. background-color: #555;
  91. color: white;
  92. padding: 2px 6px;
  93. border-radius: 4px;
  94. }
  95. .skill {
  96. width: 60%;
  97. margin-bottom: 10px;
  98. }
  99. .skill-bar {
  100. width: 100%;
  101. height: 15px;
  102. background-color: #eee;
  103. }
  104. .skill-knowledge {
  105. background-color: #555;
  106. height: 15px;
  107. }
  108. h6.skill-class {
  109. margin-top: 10px;
  110. margin-bottom: 5px;
  111. }
  112. .wrapper {
  113. display: grid;
  114. grid-template-columns: .5fr 1.5fr 4fr .5fr;
  115. }
  116. @media print {
  117. .new-page {
  118. page-break-before: always;
  119. page-break-after: always;
  120. page-break-inside: always;
  121. }
  122. .experience-wrapper {
  123. page-break-before: avoid;
  124. page-break-after: avoid;
  125. page-break-inside: avoid;
  126. }
  127. .wrapper {
  128. padding: 20px 0px;
  129. }
  130. .wrapper > div { padding: 0px 10px; float:left }
  131. .wrapper > div:nth-child(1) { height: 1px; width: 6%; }
  132. .wrapper > div:nth-child(2) { width: 23.2%; }
  133. .wrapper > div:nth-child(3) { width: 61.5%; margin-left: -20px;}
  134. }