Advertisement
Guest User

Untitled

a guest
Apr 30th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.58 KB | None | 0 0
  1. * { box-sizing: border-box; }
  2.  
  3. /*******Home page****************/
  4.  
  5.  
  6.  
  7. #carousel-example-generic {
  8. margin-top: -2em;
  9. }
  10.  
  11. .anchor {
  12. padding-top: 50px;
  13. }
  14.  
  15. .container {
  16. width: 80%;
  17. margin: 0 auto;
  18. padding-top: 6em;
  19.  
  20. }
  21.  
  22.  
  23.  
  24. .carousel {
  25. margin-left: -2em;
  26. margin-right: -2em;
  27. }
  28.  
  29. .row1{
  30. padding-top: 10%;
  31. }
  32.  
  33. .row2 {
  34. padding-top: 30%;
  35. }
  36.  
  37. .titleofproject {
  38. text-align: center;
  39. padding-top: 15%;
  40. }
  41. .row {
  42. padding-top: 15%;
  43. }
  44.  
  45. /**************Contact Page****************/
  46.  
  47. .mycontact h1 {
  48. position: absolute;
  49. top: 50%;
  50. left: 50%;
  51. height: 30%;
  52. width: 50%;
  53. margin: -15% 0 0 -25%;
  54. font-family: Georgia, Cambria, serif;
  55. color: orange;
  56. text-align: center;
  57.  
  58. }
  59.  
  60. .mycontact h2 {
  61. position: absolute;
  62. top: 70%;
  63. left: 49%;
  64. height: 30%;
  65. width: 50%;
  66. margin: 15% 0 0 -25%;
  67. font-family: Georgia, Cambria, serif;
  68. color: blue;
  69. text-align: center;
  70.  
  71. }
  72.  
  73. .mycontact h3 {
  74. position: absolute;
  75. top: 74%;
  76. left: 49%;
  77. height: 30%;
  78. width: 50%;
  79. margin: 15% 0 0 -25%;
  80. font-family: Georgia, Cambria, serif;
  81. /*The text below is how dark of a bold you want*/
  82. font-weight: 500;
  83. color: white;
  84. text-align: center;
  85. }
  86. .row3 {
  87. margin-top: 25%;
  88. }
  89.  
  90.  
  91.  
  92. #contact {
  93. background-image: url("../img/contactpic.jpg");
  94. /*Add a background image*/
  95. background-attachment: fixed;
  96. /*Give the background a fixed position does it not scroll when you scroll*/
  97. background-size: cover;
  98. /*Have the background cover the entire div section*/
  99. background-color: #FFFFCC;
  100. height: 100%;
  101. /*Change the color of the text on top so it is readable, and adjust the padding as needed.*/
  102. padding:100px;
  103. padding-top: 20px;
  104. height: 800px;
  105.  
  106. }
  107.  
  108.  
  109. /**********FAQ PAGE*******************/
  110.  
  111.  
  112.  
  113.  
  114.  
  115. #FAQ {
  116. background-color: #fffeea;
  117. color: #34495e;
  118. background-size: cover;
  119.  
  120. }
  121.  
  122. .titleFAQ {
  123. padding-top: 30%;
  124. }
  125.  
  126.  
  127.  
  128. /* *************menu for all******************/
  129.  
  130. .nav{
  131. z-index: 1;
  132. background-color: gray;
  133. position: fixed;
  134. width: 100%;
  135. top: 0;
  136. letter-spacing: 0.05em;
  137. }
  138.  
  139. body {
  140. position: relative;
  141. }
  142.  
  143. .nav ul {
  144. float: right;
  145. }
  146.  
  147. .nav ul li{
  148. display: inline-block;
  149. text-transform: uppercase;
  150. padding-bottom: 2em;
  151. padding-top: 2em;
  152. text-align: center;
  153. }
  154.  
  155. .homemenu{
  156. display: inline-block;
  157. text-transform: uppercase;
  158. padding-top: 2em;
  159.  
  160. }
  161.  
  162. .nav a { transition-property: all;
  163. transition-duration: 500ms;
  164. -webkit-transition: all;
  165. -webkit-transition-duration: 500ms; }
  166.  
  167.  
  168.  
  169.  
  170. .nav a:hover {
  171. color: green;
  172. background-color: red;
  173. text-decoration: none;
  174. font-size: 1.2em;
  175. }
  176.  
  177. /********About**************/
  178.  
  179. .header h1{
  180. text-align: center;
  181. }
  182. .titleabout{
  183. text-align: center;
  184. padding-top: 15%;
  185. }
  186.  
  187. .skill {
  188.  
  189. padding-right: 30%;
  190. text-transform: uppercase;
  191. }
  192.  
  193. .turbine {
  194. margin-top: 15%;
  195. }
  196.  
  197. #skill-list {
  198. margin-left: 2em;
  199. }
  200.  
  201. .intro {
  202. margin-left: 20%;
  203. }
  204.  
  205. /* ***********Typography********************************/
  206.  
  207. h1,
  208. h2,
  209. h3 {
  210. font-family: Futura, Helvetica, Arial, sans-serif;
  211. }
  212.  
  213. p,
  214. li {
  215. font-family: Georgia, Cambria, serif;
  216. }
  217.  
  218. /*What if you want your introductory paragraph to be
  219. in "Futura" as well, even though it is a p tag? How
  220. would you differentiate it from your other p tags?*/
  221.  
  222. .intro.p {
  223. font-family: Futura, Helvetica, Arial, sans-serif;
  224. font-size: 3em;
  225. /*The text below is how dark of a bold you want*/
  226. font-weight: 100;
  227. -webkit-margin-before: 0;
  228. }
  229.  
  230.  
  231.  
  232. .skills h3 {
  233.  
  234. text-align: center;
  235. text-transform: uppercase;
  236. }
  237.  
  238. .intro h3 {
  239.  
  240. text-align: center;
  241. text-transform: uppercase;
  242. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement