Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.56 KB | None | 0 0
  1. body {
  2. background-color: #fffeea;
  3. color: #34495e;
  4. }
  5.  
  6. .container {
  7. width: 80%;
  8. margin: 0 auto;
  9. background-color: #fffee;
  10. border: chocolate;
  11. border-style: initial;
  12. }
  13.  
  14. .container h1 {
  15. text-align: center;
  16. font-weight: light;
  17. }
  18.  
  19. .container p {
  20. text-align: center;
  21. font-weight: lighter;
  22. font-size: 1em;
  23. }
  24.  
  25. .container h2 {
  26. text-align: center;
  27. font-weight: light;
  28. }
  29.  
  30. .header h1 {
  31. text-align: center;
  32. }
  33.  
  34. .image {
  35. display: inline-block;
  36. float: left;
  37. }
  38.  
  39. .image img {
  40. width: 100%;
  41. }
  42.  
  43. .image-column {
  44. display: inline-block;
  45. float: left;
  46. width: 30%;
  47. padding: 20px;
  48. }
  49.  
  50. .intro {
  51. display: inline-block;
  52. float: left;
  53. width: 30%;
  54. padding: 20px;
  55. font-size: 2em;
  56. font-weight: 50;
  57. }
  58.  
  59. .skills {
  60. display: inline-block;
  61. float: left;
  62. width: 30%;
  63. padding-right: 10px;
  64. padding-top: 10px;
  65. padding-bottom: 10px;
  66. margin-top: 10px;
  67. font-size: 2em;
  68. font-weight: 50;
  69. background-color: #5AD4C2;
  70. color: #FFF;
  71. }
  72.  
  73. #skills-list {
  74. margin-left: 50px;
  75. }
  76.  
  77. .main-text {
  78. clear: both;
  79. padding: 20px;
  80. }
  81.  
  82. .fixed {
  83. position: fixed;
  84. bottom: 0;
  85. left: 150px;
  86. width: 80%;
  87. text-align: center;
  88. border: 1px solid #73AD21;
  89. }
  90.  
  91. .social {
  92. margin-top: 80px;
  93. text-align: center;
  94. }
  95.  
  96. /*Typography*/
  97. h1,
  98. h2,
  99. h3 {
  100. font-family: 'Open Sans', sans-serif;
  101. }
  102.  
  103. .intro p {
  104. color: green;
  105. font-family: 'Open Sans', sans-serif;
  106. font-size: medium;
  107. webkit-margin-before: 0;
  108. }
  109.  
  110. .skills p {
  111. color: green;
  112. font-family: 'Open Sans', sans-serif;
  113. font-size: 0.5em;
  114. webkit-margin-before: 0;
  115. }
  116.  
  117. .skills h2 {
  118. text-align: center;
  119. text-transform: uppercase;
  120. }
  121.  
  122. .social p {
  123. font-family: 'Open Sans', sans-serif;
  124. font-size: 1.5em;
  125. }
  126.  
  127. /* navigation bar */
  128. .nav {
  129. background-position: center;
  130. background-color: lightblue;
  131. border-width: 1px;
  132. position: center;
  133. }
  134.  
  135. .nav ul{
  136. float: right;
  137. margin: 0;
  138. padding: 0px 40px;
  139. }
  140.  
  141. .nav ul li {
  142. display: inline;
  143. }
  144.  
  145. .nav ul li a {
  146. color: white;
  147. text-transform: uppercase;
  148. letter-spacing: 0.05em;
  149. padding: 20px 40px 20px;
  150. }
  151.  
  152. .nav a {
  153. float: left;
  154. color: white;
  155. text-transform: uppercase;
  156. letter-spacing: 0.05em;
  157. padding: 20px;
  158. text-decoration: none;
  159. transition: color 600ms;
  160. /* for safari: */
  161. -webkit-transition: color 600ms;
  162. font-weight: 800;
  163. font-family:'Oswald' , Helvetica, Arial, sans-serif;
  164. }
  165.  
  166. .nav a:hover {
  167. color: #ff0;
  168. text-decoration: none;
  169. }
  170.  
  171. .jumbotron {
  172. background-image: url("../img/Golden-Gate-Bridge.jpg");
  173. background-size: cover;
  174. }
  175.  
  176. .jumbotron p {
  177. color: orange;
  178. font-style: bold;
  179. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement