Guest User

Untitled

a guest
Feb 8th, 2017
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.23 KB | None | 0 0
  1. html {
  2. box-sizing: border-box;
  3.  
  4. }
  5.  
  6. body {
  7. color: Gainsboro;
  8. height: 100%;
  9. font-family: 'Raleway', sans-serif;
  10. }
  11.  
  12. .container {
  13. width: 100%;
  14. padding: 0;
  15. }
  16.  
  17. header {
  18. height: 83px;
  19.  
  20. background-color: #26292B;
  21. color: Gainsboro;
  22. position: fixed;
  23. width: 100%;
  24. z-index: 100;
  25. }
  26.  
  27. .nav-logo {
  28. width: 80px;
  29. padding-left: 30px;
  30. padding-top: 15px;
  31. text-align: center;
  32. }
  33. .nav-logo h1,
  34. .nav-logo h2 {
  35. margin-bottom: 0;
  36. margin-top: 0;
  37.  
  38. }
  39.  
  40. .nav-logo h1 {
  41. font-size: 2em;
  42. border-bottom: 2px solid #2A93E8;
  43. }
  44.  
  45. .nav-logo h2 {
  46. font-size: 1.6em;
  47. font-weight: lighter;
  48. }
  49.  
  50. #menuButton {
  51. position: absolute;
  52. top: 20px;
  53. right: 30px;
  54. font-size: 1.5em;
  55. padding-top: 15px;
  56. padding-right: 15px;
  57. }
  58.  
  59. .mainNav {
  60. padding: 0;
  61. width: 100%;
  62. background-color: #26292B;
  63. margin-top: 10px;
  64. font-weight: lighter;
  65. }
  66.  
  67. .mainNav li{
  68. border-bottom: 1px solid #52595E;
  69. font-size: 14px;
  70. }
  71.  
  72. a {
  73. color: Gainsboro;
  74. }
  75.  
  76.  
  77. #mainPage {
  78. width: 100%;
  79. height: 100%;
  80. padding: 0;
  81. position: relative;
  82. top: 83px;
  83. background: url("/Users/jeanromero/Documents/site proto/bgphoto.jpg") center no-repeat fixed;
  84. background-size: cover;
  85. z-index: 0;
  86. }
  87.  
  88. .posties {
  89. position: fixed;
  90. top: 35%;
  91. left: 20%;
  92. text-align: center;
  93. }
  94.  
  95. .posties h1 {
  96. padding: 10px;
  97. background-color: rgba(55, 64, 66, 0.8);
  98. }
  99.  
  100. .posty1 {
  101. width: 250px;
  102. }
  103.  
  104. .posty2 {
  105. width: 250px;
  106. }
  107.  
  108. #skillsPage {
  109. position: relative;
  110. top: 82px;
  111. background-color: #26292B;
  112. text-align: center;
  113. height: 50%;
  114. overflow: hidden;
  115.  
  116. }
  117.  
  118. .skillIcon {
  119. font-size: 40px;
  120. }
  121.  
  122.  
  123.  
  124. @media screen and (min-width:750px) {
  125.  
  126. #menuButton {
  127. display: none;
  128. }
  129.  
  130.  
  131. .mainNav {
  132. width: 60%;
  133. margin-top: 0;
  134. text-align: center;
  135. padding-top: 30px;
  136. position: absolute;
  137. top: 5px;
  138. right: 20%;
  139. }
  140.  
  141. .mainNav li {
  142. display: inline-block;
  143. border-bottom: none;
  144. border-right: 1px solid #52595E;
  145. padding-right: 40px;
  146. padding-left: 40px;
  147. font-size: 1.2em;
  148. }
  149.  
  150. .mainNav li:nth-child(1) {
  151. border-left: 1px solid #52595E;
  152. }
  153.  
  154. .posties {
  155. position: fixed;
  156. top: 35%;
  157. left: 10%;
  158. }
  159.  
  160. .posties h1 {
  161. padding: 10px;
  162. background-color: rgba(55, 64, 66, 0.8);
  163. }
  164.  
  165.  
  166.  
  167.  
  168.  
  169.  
  170.  
  171.  
  172.  
  173. }
Add Comment
Please, Sign In to add comment