styles.css 2.0 KB

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