Guest User

Untitled

a guest
Jun 20th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.20 KB | None | 0 0
  1. * {
  2. box-sizing: border-box;
  3. }
  4. body {
  5. font-family: Helvetica, Cambria, serif;
  6. position: relative;
  7. background-color: black;
  8. }
  9.  
  10. /*Navbar*/
  11. .navbar a:hover {
  12. text-decoration: none;
  13. transition: color 600ms;
  14. -webkit-transition: color 600ms;
  15. }
  16. .navbar ul li {
  17. /* display: inline-block;
  18. */
  19. padding: 5px 7px 7px;
  20. margin-right: 1em;
  21. }
  22. .projectName {
  23. text-transform: uppercase;
  24. margin-top: 7px;
  25. /* align project name with navbar items */
  26. padding-left: 30px;
  27. }
  28. .projectName a {
  29. color: white;
  30. }
  31.  
  32. /*Carousel*/
  33. .carousel {
  34. margin-left: -15px;
  35. margin-right: -15px;
  36. }
  37. .carousel-caption h3 {
  38. /* padding-bottom: 40%; disappears on mobile*/
  39. font-size: 9vw;
  40. }
  41. .anchor {
  42. /* allows section headings to appear under nav */
  43. padding-top: 40px;
  44. }
  45. .header h1 {
  46. text-align: center;
  47. text-transform: uppercase;
  48. }
  49. .header a {
  50. padding: 2em;
  51. }
  52. .row h2 {
  53. color: white;
  54. }
  55. .row p {
  56. color: white;
  57. font-size: 1.5em;
  58. }
  59.  
  60. /*Work*/
  61. #work1 {
  62. height: 1000px;
  63. background-image: url("../img/background_work2.jpg");
  64. background-attachment: fixed;
  65. color: white;
  66. }
  67. .row img {
  68. margin: auto;
  69. /*Centers images in grid*/
  70. /* padding-top: 20px;
  71. padding-bottom: 40px;*/
  72. padding: 20px;
  73. }
  74.  
  75. /*About*/
  76. #about {
  77. height: 1000px;
  78. background-image: url("../img/background_work2.jpg");
  79. background-attachment: fixed;
  80. background-size: cover;
  81. color: white;
  82. clear: both;
  83. }
  84. #about img {
  85. width: 100%;
  86. }
  87. #about p {
  88. font-size: 1.2em;
  89. }
  90. #about ul li {
  91. font-size: 1.2em;
  92. font-weight: normal;
  93. }
  94. #about .main-text h3 {
  95. text-align: center;
  96. }
  97. #about .main-text p {
  98. width: 80%;
  99. margin: 0 auto;
  100. }
  101.  
  102. .header h1 {
  103. padding-bottom: 40px;
  104. }
  105.  
  106. /*Contact*/
  107. #contact {
  108. background-image: url("../img/contactimage.jpg");
  109. background-attachment: fixed;
  110. background-size: cover;
  111. color: white;
  112. height: 1000px;
  113. }
  114.  
  115. .contactbox {
  116. margin: 0 auto;
  117. }
  118. ul .glyphicon:hover {
  119. color: #ff0;
  120. text-decoration: none;
  121. transition: color 600ms;
  122. -webkit-transition: color 600ms;
  123. }
  124. .contactinfo h3 {
  125. text-align: center;
  126. }
  127. .contactinfo ul {
  128. background-color: #45444a;
  129. opacity: 0.9;
  130. text-align: center;
  131. font-size: 2em;
  132. }
  133. .contactlist li {
  134. font-family: 'Montserrat', sans-serif;
  135. list-style-type: none;
  136. }
  137.  
  138. .form-control {
  139. width: 95%;
  140. }
  141.  
  142. .btn, .btn-primary {
  143. margin-top: 30px;
  144. }
  145.  
  146.  
  147. /*FAQ*/
  148. #faq {
  149. height: 1000px;
  150. background-image: url("../img/background_work2.jpg");
  151. background-attachment: fixed;
  152. color: white;
  153. }
  154.  
  155. .supervid {
  156. text-align: center;
  157. padding-top: 50px;
  158. }
  159.  
  160. .learn-more {
  161. text-align: left;
  162. float: left;
  163. }
  164. .modal-button {
  165. float: right;
  166. padding: 15px;
  167. }
  168. .modal-header {
  169. color: black;
  170. font-size: 2em;
  171. text-align: center;
  172. }
  173. .modal-content p {
  174. color: black;
  175. padding: 10px;
  176. font-size: 1.3em;
  177. }
  178. .faq-container {
  179. width: 50%;
  180. }
  181. #modalembed {
  182. height: 500px;
  183. width: 100%;
  184. padding: 10px;
  185. }
  186. #modalvideo {
  187. height: 325px;
  188. width: 560px;
  189. }
  190.  
  191.  
  192. /*Footer*/
  193. footer p {
  194. color: white;
  195. display: inline-block;
  196. float: left;
  197. padding-right: 20px;
  198. padding-left: 40px;
  199. }
  200. .facebook {
  201. float: left;
  202. display: inline-block;
  203. }
  204.  
  205. /*Typography*/
  206. h1, h2, h3 {
  207. font-family: Futura, Helvetica, Arial, sans-serif;
  208. }
  209. /*h3 {
  210. font-family: 'Song Myung', serif;
  211. }*/
  212.  
  213. /*Media Queries*/
  214. @media (max-width: 480px) {
  215. body {
  216. font-size: 1em;
  217. }
  218. }
Add Comment
Please, Sign In to add comment