Guest User

Untitled

a guest
Jun 18th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. body{
  2. margin: 0;
  3. }
  4. header{
  5. font-family: sans-serif;
  6. background: url("../static/images/resume/header-background.jpg");
  7. background-size: cover;
  8. color: white;
  9. height: 100vh;
  10. background-position: center;
  11. background-attachment: fixed;
  12. margin: 0;
  13. }
  14.  
  15. /*code for header*/
  16. .home-tabs{
  17. display: flex;
  18. margin: 0;
  19. margin-left: 20vw;
  20. margin-right: 20vw;
  21. }
  22. .tab{
  23. flex-grow: 1;
  24. display: inline;
  25. }
  26. header ul{
  27. margin: 0;
  28. list-style: none;
  29. }
  30. a{
  31. color: white;
  32. text-decoration: none;
  33. }
  34. a:hover{
  35. color: #d7cfcf;
  36. }
  37. header{
  38. text-align: center;
  39. }
  40.  
  41.  
  42. .home-content{
  43. text-align: center;
  44. margin-top: 22vh;
  45. }
  46. header p{
  47. width: 30vw;
  48. margin: auto;
  49. color: #d7cfcf;
  50. }
  51. span{
  52. color: white;
  53. font-size: 17px;
  54. }
  55. .social-icons{
  56. margin-top: 8vh;
  57. text-align: center;
  58. display: flex;
  59. margin-left: 35vw;
  60. margin-right: 35vw;
  61. }
  62. .image{
  63. flex-grow: 1;
  64. }
  65. .image:hover{
  66. filter: brightness(140%);
  67. }
  68.  
  69. /*Code for main first section*/
  70. section{
  71. height: 100vh;
  72. display: flex;
  73. border-bottom: 2px solid grey;
  74. }
  75. .section-about{
  76. background: #dedddd;
  77. flex-wrap: wrap;
  78. }
  79. .lhs{
  80. margin-top: 10px;
  81. width: 25%;
  82. }
  83. .lhs p{
  84. border-bottom:5px solid #2196f38f;
  85. display: inline-block;
  86. position: absolute;
  87. margin: 0;
  88. }
  89. .rhs{
  90. margin-top: 10px;
  91. width: 75%;
  92. display: inline-block;
  93. }
  94.  
  95. .rhs p{
  96. margin: 0;
  97. }
  98. .italic{
  99. font-style: italic;
  100. font-size: 14px;
  101. }
  102. /*code for second section */
  103. .section-skills{
  104. background: #dedddd;
  105. flex-wrap: wrap;
  106. }
  107. .bar{
  108. background: grey;
  109. width: 60%;
  110. height: 5%;
  111. }
  112. .bar-span{
  113. background: black;
  114. display: block;
  115. height: 100%;
  116. }
  117. .sixty{
  118. width: 60%;
  119. }
  120. .fifty{
  121. width: 50%;
  122. }
  123. .fourty{
  124. width: 40%;
  125. }
  126. .eighty{
  127. width: 80%;
  128. }
  129. .ninety{
  130. width: 90%;
  131. }
  132. .seventy{
  133. width: 60%;
  134. }
Add Comment
Please, Sign In to add comment