Advertisement
Guest User

Untitled

a guest
Oct 24th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.75 KB | None | 0 0
  1. * { box-sizing: border-box; }
  2.  
  3. body {
  4. background-color: #fffeea;
  5. color: #34495e;
  6. }
  7.  
  8.  
  9. h2, h3 {
  10. font-size: 20px;
  11. font-weight: bold;
  12.  
  13. }
  14.  
  15. p {
  16. line-height: 1.8;
  17. }
  18.  
  19. .container {
  20. width: 80%;
  21. margin: 30px auto;
  22. padding-bottom: 50px;
  23.  
  24. }
  25.  
  26. .header h1 {
  27. text-align: center;
  28. margin-bottom: 70px;
  29. font-weight: bold;
  30. font-size: 40px;
  31. background-color: #ffff99;
  32. }
  33.  
  34. .column {
  35. width: 50%;
  36. padding: 0 20px;
  37. display: inline-block;
  38. border-radius: 20px;
  39. float: left;
  40. }
  41.  
  42. .image {
  43.  
  44. }
  45.  
  46. .aboutpic {
  47. position: relative;
  48. left: 335px;
  49. bottom: 20px;
  50. border-style: solid;
  51. border-width: 3px;
  52. border-color: black;
  53. }
  54.  
  55. .intro {
  56. background-color: pink;
  57. position: relative;
  58. right: 10px;
  59. bottom: 10px;
  60. }
  61.  
  62. .skills {
  63. background-color: #5AD4C2;
  64. color: #FFF;
  65. line-height: 1.8;
  66. position: relative;
  67. left: 10px;
  68. bottom : 10px;
  69. padding-top: 20px;
  70. padding-bottom: 20px;
  71. }
  72.  
  73. .main-text {
  74. position: relative;
  75. top: 10px;
  76. bottom: 10px;
  77. background-color: #ffff99;
  78. clear: both;
  79. display: inline-block;
  80. padding-top: 40px;
  81. padding-left: 20px;
  82. padding-right: 20px;
  83. line-height: 1.8;
  84. /*font-family: 'Oswald', sans-serif;*/
  85. }
  86.  
  87. #skill-list {
  88. margin-left: 175px; /*50px*/
  89. }
  90.  
  91. .indexlink {
  92. text-align: center;
  93. display: inline;
  94. }
  95.  
  96. /*typography*/
  97. h1, h2, h3 {
  98. /*font-family: Futura, Helvetica, Arial, sans-serif;*/
  99. font-family: 'Oswald', sans-serif;
  100. line-height: 1.8;
  101. }
  102.  
  103. p, li {
  104. /*font-family: Georgia, serif;*/
  105. font-family: 'Oswald', sans-serif;
  106. line-height: 1.8;
  107. font-size: 1.2em;
  108. }
  109. h1 {
  110. font-size: 2.5em;
  111. }
  112. /*end typography*/
  113.  
  114. .intro p {
  115. /*font-family: Futura, Helvetica, Arial, sans-serif;*/
  116. font-family: 'Oswald', sans-serif;
  117. /*font-size: 3em;*/
  118. font-weight: 100;
  119. }
  120.  
  121. .skills h2 {
  122. text-align: center;
  123. text-transform: uppercase;
  124. }
  125. /*Contact Info css */
  126. .container1 {
  127. background-image: url("../img/humberblue.jpg");
  128. background-size: cover;
  129. width: 80%;
  130. margin: 40px auto 20px auto;
  131. padding-top: 10px;
  132. padding-bottom: 10px;
  133. text-align: center;
  134. border-radius: 20px;
  135. }
  136.  
  137. .column1 {
  138. width: 60%;
  139. margin: 10px auto;
  140. text-align: center;
  141. /*border-radius: 20px;*/
  142. background-color: pink;
  143. opacity: 0.7;
  144. }
  145.  
  146. .social {
  147. margin: 5px 25px;
  148. padding: 0px 50px;
  149. }
  150.  
  151. a:link {
  152. text-decoration: none;
  153. text-align: center;
  154. }
  155.  
  156. .social .fa-twitter:hover {
  157. color: #00ABE3;
  158. }
  159.  
  160. .social .fa-linkedin:hover {
  161. color: #0094BC;
  162. }
  163.  
  164. .end {
  165. padding-right: 50px;
  166. text-align: center;
  167. }
  168.  
  169. /*Contact typography */
  170. .container1 h1 {
  171. font-size: 2.5em;
  172. line-height: 1.8;
  173. font-weight: bold;
  174. color: black;
  175. }
  176. .container1 h2 {
  177. font-size: 1.5em;
  178. line-height: 1.8;
  179. font-weight: bold;
  180. color: black;
  181. }
  182.  
  183. .container1 p {
  184. font-size: 1.2em;
  185. line-height: 1.4;
  186. font-weight: bold;
  187. color: black;
  188. }
  189. .column1 {
  190. font-size: 1em;
  191. line-height: 1.8;
  192. font-weight: bold;
  193. }
  194.  
  195. .social {
  196. font-size: 2.5em;
  197. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement