Advertisement
Guest User

Perso2

a guest
Apr 25th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.80 KB | None | 0 0
  1. /* LAYOUT */
  2.  
  3. /* Sticky footer styles
  4. -------------------------------------------------- */
  5.  
  6. html,
  7. body {
  8.   height: 100%;
  9.   /* The html and body elements cannot have any padding or margin. */
  10.   font-family: AudiTypeNormal, Verdana, sans-serif;
  11.   color:#000;
  12. }
  13.  
  14. /* Wrapper for page content to push down footer */
  15. #wrap {
  16.   min-height: 100%;
  17.   height: auto;
  18.   /* Negative indent footer by its height */
  19.   margin: 0 auto -60px;
  20.   /* Pad bottom by footer height */
  21.   padding: 0 0 60px;
  22. }
  23.  
  24. /* Set the fixed height of the footer here */
  25. footer {
  26.   height: 60px;
  27.   background-color: #f5f5f5;
  28. }
  29.  
  30. /* BOOTSTRAP MODIFICATIONS
  31. -------------------------------------------------- */
  32.  
  33.  
  34.  
  35. /* CAROUSEL
  36. -------------------------------------------------- */
  37. .carousel {
  38.     height:30%;
  39.     overflow:hidden;
  40. }
  41.  
  42.  
  43. .carousel-item.active,
  44. .carousel-item-next,
  45. .carousel-item-prev {
  46.   display: block;
  47. }
  48.  
  49. .carousel-caption {
  50.     top:5%;
  51.     text-align:left;
  52. }
  53.  
  54. .carousel-caption h3 {
  55.     background:#000;
  56.     padding:0.5em;
  57.     display:inline-block;
  58.     width:auto;
  59. }
  60.  
  61. .carousel-caption p {
  62.     background:#000;
  63.     padding:0.3em;
  64.     display:inline-block;
  65.     width:auto;
  66. }
  67.  
  68. /* BUTTONS
  69. -------------------------------------------------- */
  70.  
  71. a.audi-button--primary, button.audi-button--primary {
  72.     background:#000;
  73.     color:#FFF;
  74.     border:0;
  75.     padding:.8666666667em 0 .8em;
  76.     padding-left:2.1333333333em;
  77.     padding-right:2.1333333333em;
  78.     -webkit-transition-duration:0.5s;
  79.     transition-duration:0.5s;
  80. }
  81.  
  82. a.audi-button--primary:focus, a.audi-button--primary:hover, button.audi-button--primary:hover, button.audi-button--primary:focus {
  83.     background:#333;
  84.     -webkit-transition-duration:0.5s;
  85.     transition-duration:0.5s;
  86.     cursor:pointer;
  87.     text-decoration:none;
  88. }
  89.  
  90. a.audi-button--secondary, button.audi-button--secondary {
  91.     border:1px solid #000;
  92.     color:#000;
  93.     padding:.8666666667em 0 .8em;
  94.     padding-left:2.1333333333em;
  95.     padding-right:2.1333333333em;
  96.     -webkit-transition-duration:0.5s;
  97.     transition-duration:0.5s;
  98. }
  99.  
  100. a.audi-button--secondary:focus, a.audi-button--secondary:hover, button.audi-button--secondary:hover, button.audi-button--secondary:focus {
  101.     color:#666;
  102.     border:1px solid #666;
  103.     -webkit-transition-duration:0.5s;
  104.     transition-duration:0.5s;
  105.     cursor:pointer;
  106.     text-decoration:none;
  107. }
  108.  
  109. /* GENERAL
  110. -------------------------------------------------- */
  111.  
  112. .text-white {
  113.     color:#FFF;
  114. }
  115.  
  116. .bg-white {
  117.     background:#FFF;
  118. }
  119.  
  120. .text-black {
  121.     color:#000
  122. }
  123.  
  124. .bg-black {
  125.     background:#000;
  126. }
  127.  
  128. /* POSITION
  129. -------------------------------------------------- */
  130.  
  131. .center {
  132.     text-align:center;
  133. }
  134.  
  135. /* MENU
  136. -------------------------------------------------- */
  137.  
  138. a.active {
  139.     position:relative;
  140. }
  141.  
  142. a.active::after {
  143.     content:"";
  144.      position:absolute;
  145.      left:15%;
  146.      right:15%;
  147.      bottom:0;
  148.      border:1px solid #FFF;
  149. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement