styles.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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. display: grid;
  39. padding: 20px 0px;
  40. grid-template-columns: .5fr 1.5fr 4fr .5fr;
  41. }
  42. .sidebar-section p {
  43. color: #aaa;
  44. margin: .3em 0;
  45. }
  46. .sidebar-section p span {
  47. color: #2A2A2A;
  48. display: block;
  49. }
  50. .ti-name {
  51. margin-bottom: 0;
  52. text-transform: uppercase;
  53. font-weight: 900;
  54. }
  55. .experience-wrapper {
  56. border-bottom: 1px solid #f0f0f0;
  57. padding-bottom: 10px;
  58. text-align: justify;
  59. }
  60. .experience-wrapper:last-child {
  61. border: none;
  62. padding: 0;
  63. }
  64. .experience-wrapper small {
  65. color: #2A2A2A;
  66. font-family: 'Raleway', sans-serif;
  67. font-style: normal;
  68. font-size: smaller;
  69. }
  70. .experience-wrapper p {
  71. margin: .5em 0;
  72. }
  73. .experience-wrapper ul {
  74. margin: .5em 0;
  75. }
  76. .experience-wrapper ul li {
  77. margin-bottom: .3em;
  78. }
  79. .experience-wrapper ul li:last-child {
  80. margin-bottom: 0;
  81. }
  82. ul.technology-list {
  83. list-style: none;
  84. margin: 0;
  85. padding: 0;
  86. display: inline-block;
  87. color: #777;
  88. font-size: small;
  89. }
  90. ul.technology-list li {
  91. display: inline-block;
  92. background-color: #555;
  93. color: white;
  94. padding: 2px 6px;
  95. border-radius: 4px;
  96. }