Advertisement
Guest User

Untitled

a guest
Nov 14th, 2014
16
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.55 KB | None | 0 0
  1. /* GLOBAL STYLES
  2. -------------------------------------------------- */
  3. /* Padding below the footer and lighter body text */
  4.  
  5. body {
  6.   padding-bottom: 40px;
  7.   color: #5a5a5a;
  8. }
  9.  
  10.  
  11. /* CUSTOMIZE THE NAVBAR
  12. -------------------------------------------------- */
  13.  
  14. /* Special class on .container surrounding .navbar, used for positioning it into place. */
  15. .navbar-wrapper {
  16.   position: absolute;
  17.   top: -27px;
  18.   right: 1px;
  19.   left: 100px;
  20.   z-index: 2;
  21. }
  22.  
  23. /* Flip around the padding for proper display in narrow viewports */
  24. .navbar-wrapper > .container {
  25.   padding-right: 0;
  26.   padding-left: 0;
  27. }
  28. .navbar-wrapper .navbar {
  29.   padding-right: 15px;
  30.   padding-left: 15px;
  31. }
  32. .navbar-wrapper .navbar .container {
  33.   width: auto;
  34. }
  35.  
  36.  
  37. /* CUSTOMIZE THE CAROUSEL
  38. -------------------------------------------------- */
  39.  
  40. /* Carousel base class */
  41. .carousel {
  42.   height: 450px;
  43.   margin-bottom: 50px;
  44. }
  45. /* Since positioning the image, we need to help out the caption */
  46. .carousel-caption {
  47.   z-index: 10;
  48. }
  49.  
  50. /* Declare heights because of positioning of img element */
  51. .carousel .item {
  52.   height: 450px;
  53.   background-color: #348fd4;
  54. }
  55. .carousel-inner > .item > img {
  56.   position: absolute;
  57.   top: 0;
  58.   left: 0;
  59.   min-width: 100%;
  60.   height: 450px;
  61. }
  62. .carousel-caption h1 {
  63.   font-size: 50px;
  64.   font-family: Arial;
  65.   font-weight: bold;
  66.   text-shadow:1px 1px 8px rgba(0,0,0,.6)} ;
  67. }
  68. .carousel-caption p {
  69.   font-weight: lighter;
  70.   font-family: Open Sans;
  71. }
  72. .carousel-caption p a {
  73.   font-size: 13px;
  74.   font-family: Nexa;
  75.   font-weight: normal;
  76. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement