Advertisement
nazmul0028

Zuha Template CSS

Jul 24th, 2014
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 KB | None | 0 0
  1. /* GLOBAL STYLES-------------------------------------------------- */
  2. body {
  3.  
  4. }
  5. /* CUSTOMIZE THE NAVBAR-------------------------------------------------- */
  6.  
  7. .navbar-wrapper {
  8.  
  9. }
  10. /* CUSTOMIZE THE CAROUSEL-------------------------------------------------- */
  11. /* Carousel base class */
  12.  
  13. /* Since positioning the image, we need to help out the caption */
  14. .carousel-caption { z-index: 10;}/* Declare heights because of positioning of img element */
  15. .carousel .item {
  16. height: 500px;
  17. background-color: #777;
  18. }
  19. .carousel-inner > .item > img {
  20. position: absolute;
  21. top: 0;
  22. left: 0;
  23. min-width: 100%;
  24. height: 500px;
  25. }
  26.  
  27.  
  28. /* RESPONSIVE CSS-------------------------------------------------- */
  29.  
  30. /* Navbar positioning foo */
  31. .navbar-wrapper {
  32. margin-top: 20px;
  33. }
  34. /* The navbar becomes detached from the top, so we round the corners */
  35. .navbar-wrapper .navbar {
  36. border-radius: 4px;
  37. }
  38. /* Bump up size of carousel content */
  39. .carousel-caption p {
  40. margin-bottom: 20px;
  41. font-size: 21px;
  42. line-height: 1.4;
  43. }
  44.  
  45. /* Small devices (tablets, 768px and up) */
  46. @media (min-width: 768px) {
  47.  
  48. }
  49. /* Medium devices (desktops, 992px and up) */
  50. @media (min-width: 992px) {
  51.  
  52. }
  53. /* Extra small devices (phones, less than 768px) */
  54. @media (max-width: 767px) {
  55.  
  56. }
  57.  
  58. /* wide mobile screen */
  59. @media (min-width: 480px) and (max-width: 767px) {
  60.  
  61. }
  62.  
  63.  
  64. /* Large devices (large desktops, 1200px and up) */
  65. @media (min-width: 1200px) {
  66.  
  67. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement