Advertisement
Guest User

CSS

a guest
Jan 8th, 2015
356
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 4.26 KB | None | 0 0
  1. /*
  2.  * Globals
  3.  */
  4.  
  5. /* Links */
  6. a,
  7. a:focus,
  8. a:hover {
  9.   color: #fff;
  10. }
  11.  
  12. /* Custom default button */
  13. .btn-default,
  14. .btn-default:focus {
  15.   color: #333;
  16.   text-shadow: none; /* Prevent inheritence from `body` */
  17.   background-color: #fff;
  18.   border: 1px solid #fff;
  19. }
  20. .btn-default:hover{
  21.     background-color: red;
  22.     border-color: red;
  23.     color: white;
  24. }
  25. .downico{
  26.  font-size: 50px;  
  27. }
  28. .downico:hover{
  29.  color: red  
  30. }
  31. /* fade in animations */
  32. #intro{
  33.  display: table;
  34.     width: 100%;
  35.     height: auto;
  36.     padding: 100px 0;
  37.     text-align: center;
  38.     color: #fff;
  39.    
  40.    
  41. }
  42. /*
  43.  * Base structure
  44.  */
  45.  
  46. html,
  47. body {
  48.   height: 100%;
  49.   background-color: #333;
  50. }
  51. body {
  52.   color: #fff;
  53.   text-align: center;
  54.  
  55. }
  56.  
  57. /* Extra markup and styles for table-esque vertical and horizontal centering */
  58. .site-wrapper {
  59.   display: table;
  60.   width: 100%;
  61.   height: 100%; /* For at least Firefox */
  62.   min-height: 100%;
  63.   -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,.5);
  64.           box-shadow: inset 0 0 5px rgba(0,0,0,.5);
  65. }
  66. .site-wrapper-inner {
  67.   display: table-cell;
  68.   vertical-align: top;
  69. }
  70. .cover-container {
  71.   margin-right: auto;
  72.   margin-left: auto;
  73. }
  74.  
  75. /* Padding for spacing */
  76. .inner {
  77.   padding: 30px;
  78. }
  79.  
  80.  
  81. /*
  82.  * Header
  83.  */
  84. .masthead{
  85.  background-color: black;
  86.  z-index: 1;
  87. }
  88. .masthead-brand {
  89.   margin-top: -10px;
  90.   margin-bottom: 10px;
  91.   font-size: 50px;
  92.   font-family: BaconBad;
  93. }
  94.  
  95. .masthead-nav > li {
  96.   display: inline-block;
  97. }
  98. .masthead-nav > li + li {
  99.   margin-left: 20px;
  100. }
  101. .masthead-nav > li > a {
  102.   padding-right: 0;
  103.   padding-left: 0;
  104.   font-size: 16px;
  105.   font-weight: bold;
  106.   color: #fff; /* IE8 proofing */
  107.   color: rgba(255,255,255,.75);
  108.   border-bottom: 2px solid transparent;
  109. }
  110. .masthead-nav > li > a:hover,
  111. .masthead-nav > li > a:focus {
  112.   background-color: transparent;
  113.   border-bottom-color: #a9a9a9;
  114.   border-bottom-color: rgba(255,255,255,.25);
  115. }
  116. .masthead-nav > .active > a,
  117. .masthead-nav > .active > a:hover,
  118. .masthead-nav > .active > a:focus {
  119.   color: #f00;
  120.   border-bottom-color: #f00;
  121. }
  122.  
  123. @media (min-width: 768px) {
  124.   .masthead-brand {
  125.     float: left;
  126.   }
  127.   .masthead-nav {
  128.     float: right;
  129.   }
  130. }
  131.  
  132.  
  133. /*
  134.  * Cover
  135.  */
  136. .intro{
  137.  height: 100vh;
  138.  background: url('../img/homebacon.jpg') ;
  139.  min-width: 100%;
  140.  margin-bottom: 0px;
  141. }
  142. .cover {
  143.   padding: 0 20px;
  144. }
  145. .cover .btn-lg {
  146.   padding: 10px 20px;
  147.   font-weight: bold;
  148. }
  149. .cover-heading {
  150.  font-family: montserrat;
  151.  font-size: 100px;
  152.  margin-top:;  
  153.  
  154. }
  155.  
  156. /*
  157.  * About
  158. */
  159. #about{
  160.    background-color: grey;
  161.    height: 100vh;
  162.     margin-top: -20px;
  163. }
  164. #about1{
  165.  font-family: montserrat;
  166.  padding-top: 300px;
  167.  font-size: 50px
  168. }
  169. #about .downico{
  170.  font-size: 40px;  
  171. }
  172. /*
  173.  * Stuff
  174. */
  175. #stuff{
  176.     background-color: #505050;
  177.    height: 100vh;
  178.     margin-top: -20px;
  179. }
  180. #stuff1{
  181.  font-family: montserrat;
  182.  padding-top: 300px;
  183.  font-size: 50px
  184. }
  185. #stuff .downico{
  186.  font-size: 40px;
  187. }
  188. /*
  189.  * contact
  190. */
  191. #contact{
  192.     background-color: ;
  193.    height: 100vh;
  194.     margin-top: -20px;
  195. }
  196. #contact1{
  197.  font-family: montserrat;
  198.  padding-top: 300px;
  199.  font-size: 50px
  200. }
  201. #mailto{
  202.  font-size: 30px;  
  203. }
  204. #mailto:hover{
  205.  color: red;
  206.  z-index: ;    
  207.  
  208. }
  209. /*
  210.  * Footer
  211.  */
  212.  
  213. .masfoot {
  214.   color: #999; /* IE8 proofing */
  215.   color: rgba(255,255,255,.5);
  216.   background-color: #191919;
  217.   position: sticky;
  218. }
  219.  
  220. /*
  221.  * Affix and center
  222.  */
  223.  
  224. @media (min-width: 768px) {
  225.   /* Pull out the header and footer */
  226.   .masthead {
  227.     position: fixed;
  228.     top: 0;
  229.   }
  230.   .mastfoot {
  231.     position: fixed;
  232.     bottom: 0;
  233.   }
  234.   /* Start the vertical centering */
  235.   .site-wrapper-inner {
  236.     vertical-align: middle;
  237.   }
  238.   /* Handle the widths */
  239.   .masthead,
  240.   .mastfoot,
  241.   .cover-container {
  242.     width: 100%; /* Must be percentage or pixels for horizontal alignment */
  243.   }
  244.   .cover-heading {
  245.  font-family: montserrat;
  246.  font-size: 100px;
  247.  margin-top: 1.8em;  
  248.  
  249. }    
  250. }
  251.  
  252. @media (min-width: 992px) {
  253.   .masthead,
  254.   .mastfoot,
  255.   .masthead .inner {
  256.     width: 1000px;
  257.     position: sticky;
  258.     margin: 0 auto;
  259.    
  260.   }
  261.   .cover-heading {
  262.  font-family: montserrat;
  263.  font-size: 100px;
  264.  margin-top: 0.9em;  
  265.  
  266. }
  267. }
  268. @font-face {
  269.     font-family: BaconBad;
  270.     src: url(../fonts/Bacon_Bad.ttf);
  271. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement