styles.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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. .wrapper {
  41. padding: 20px 0px;
  42. /*display: grid;
  43. grid-template-columns: .5fr 1.5fr 4fr .5fr;
  44. */
  45. }
  46. .wrapper > div { padding: 0px 10px; float:left }
  47. .wrapper > div:nth-child(1) { height: 1px; width: 6%; }
  48. .wrapper > div:nth-child(2) { width: 23.2%; }
  49. .wrapper > div:nth-child(3) { width: 61.5%; margin-left: -20px;}
  50. .sidebar-section p {
  51. color: #aaa;
  52. margin: .3em 0;
  53. }
  54. .sidebar-section p span {
  55. color: #2A2A2A;
  56. display: block;
  57. }
  58. .ti-name {
  59. margin-bottom: 0;
  60. text-transform: uppercase;
  61. font-weight: 900;
  62. }
  63. .experience-wrapper {
  64. border-bottom: 1px solid #f0f0f0;
  65. padding-bottom: 10px;
  66. text-align: justify;
  67. }
  68. .experience-wrapper:last-child {
  69. border: none;
  70. padding: 0;
  71. }
  72. .experience-wrapper small {
  73. color: #2A2A2A;
  74. font-family: 'Raleway', sans-serif;
  75. font-style: normal;
  76. font-size: smaller;
  77. }
  78. .experience-wrapper p {
  79. margin: .5em 0;
  80. }
  81. .experience-wrapper ul {
  82. margin: .5em 0;
  83. }
  84. .experience-wrapper ul li {
  85. margin-bottom: .3em;
  86. }
  87. .experience-wrapper ul li:last-child {
  88. margin-bottom: 0;
  89. }
  90. ul.technology-list {
  91. list-style: none;
  92. margin: 0;
  93. padding: 0;
  94. display: inline-block;
  95. color: #777;
  96. font-size: small;
  97. }
  98. ul.technology-list li {
  99. display: inline-block;
  100. background-color: #555;
  101. color: white;
  102. padding: 2px 6px;
  103. border-radius: 4px;
  104. }
  105. .skill {
  106. width: 60%;
  107. margin-bottom: 10px;
  108. }
  109. .skill-bar {
  110. width: 100%;
  111. height: 15px;
  112. background-color: #eee;
  113. }
  114. .skill-knowledge {
  115. background-color: #555;
  116. height: 15px;
  117. }
  118. h6.skill-class {
  119. margin-top: 10px;
  120. margin-bottom: 5px;
  121. }
  122. @media print {
  123. .new-page {
  124. page-break-before: always;
  125. page-break-after: always;
  126. page-break-inside: always;
  127. }
  128. .experience-wrapper {
  129. page-break-before: avoid;
  130. page-break-after: avoid;
  131. page-break-inside: avoid;
  132. }
  133. }