resume.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. *{margin:0;padding:0;}
  2. body{
  3. display: flex;
  4. justify-content: center;
  5. width: 100%;
  6. margin: 35px 0;
  7. }
  8. .everything{
  9. display: flex;
  10. flex-direction: column;
  11. align-items: center;
  12. max-width: 1000px;
  13. }
  14. header{
  15. display: flex;
  16. flex-direction: column;
  17. justify-content: center;
  18. align-items: center;
  19. width: 100%;
  20. height: 200px;
  21. background: #152730;
  22. color: #5FECE0;
  23. }
  24. .content{
  25. display: flex;
  26. width: 100%;
  27. background: rgb(196, 198, 192);
  28. }
  29. .leftContent{
  30. height: 100%;
  31. width: 70%;
  32. }
  33. .leftItem{
  34. padding: 35px;
  35. padding-left: 50px;
  36. }
  37. .leftItem > h2{
  38. margin-bottom: 25px;
  39. }
  40. .experience{
  41. padding: 25px;
  42. }
  43. .jobReqs{
  44. padding-left: 35px;
  45. }
  46. .rightContent{
  47. display: flex;
  48. flex-direction: column;
  49. justify-content: flex-start;
  50. height: 100%;
  51. width: 30%;
  52. border-left: 1px solid black;
  53. }
  54. .rightBox{
  55. display: flex;
  56. flex-direction: column;
  57. width: 100%;
  58. box-sizing: border-box;
  59. padding: 35px;
  60. }
  61. .rightBox ul{
  62. list-style-type: none;
  63. }
  64. .rightBox li{
  65. margin: 10px 0 10px 10px;
  66. }
  67. .link{
  68. display: flex;
  69. align-items: center;
  70. margin-bottom: 25px;
  71. }
  72. .link a {
  73. font-size: 16px;
  74. margin-left: 5px;
  75. }
  76. .bottomBorder{
  77. border-bottom: 1px solid black;
  78. width: 95%;
  79. margin: 0 auto;
  80. }
  81. .educ{
  82. margin-top: 25px;
  83. margin-left: 10px;
  84. }
  85. @media screen and (max-width: 1000px){
  86. body{
  87. margin: 0;
  88. }
  89. .everything{
  90. width: 100%;
  91. }
  92. header h1{
  93. text-align: center;
  94. }
  95. .content{
  96. flex-direction: column;
  97. align-items: center;
  98. }
  99. .leftContent, .rightContent{
  100. width: 100%;
  101. }
  102. .leftItem{
  103. padding: 20px;
  104. text-align: justify;
  105. }
  106. .experience{
  107. padding: 0 0 25px 0;
  108. }
  109. .rightContent{
  110. border-left: none;
  111. border-top: 1px solid black;
  112. }
  113. .bottomBorder{
  114. width: 100%;
  115. }
  116. }