Advertisement
kobial8

Testimonial Type 2 | CSS Code

Feb 27th, 2015
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.32 KB | None | 0 0
  1. .testimonial{
  2.     padding: 0 0 60px 0;
  3.     background: #edf1f4;
  4. }
  5. .carousel-control{
  6.     position: absolute;
  7.     top: 0px;
  8.     bottom: 0px;
  9.     left: 0px;
  10.     height: 44px;
  11.     width: auto;
  12.     border: 1px solid #a7b4b6;
  13.     border-radius: 0;
  14.     padding: 11px 20px;
  15.     font-size: 14px;
  16.     color: #a7b4b6;
  17.     font-weight: 700;
  18.     text-transform: uppercase;
  19.     text-align: center;
  20.     text-shadow: none;
  21.     opacity: 1;
  22. }
  23. .carousel-control:hover, .carousel-control:focus{
  24.     color: #3498db;
  25.     border: 1px solid #3498db;
  26. }
  27. .carousel-control.left{
  28.     background: none;
  29.     left: 50%;
  30.     margin-left: -80px;
  31.     -webkit-border-top-left-radius: 2px;
  32.     -webkit-border-bottom-left-radius: 2px;
  33.     -moz-border-radius-topleft: 2px;
  34.     -moz-border-radius-bottomleft: 2px;
  35.     border-top-left-radius: 2px;
  36.     border-bottom-left-radius: 2px;
  37. }
  38. .carousel-control.right{
  39.     background: none;
  40.     right: 50%;
  41.     margin-right: -83px;
  42.     -webkit-border-top-right-radius: 2px;
  43.     -webkit-border-bottom-right-radius: 2px;
  44.     -moz-border-radius-topright: 2px;
  45.     -moz-border-radius-bottomright: 2px;
  46.     border-top-right-radius: 2px;
  47.     border-bottom-right-radius: 2px;
  48. }
  49. #carousel-testimonials blockquote{
  50.     padding: 104px 30px 0 30px;
  51. }
  52. #carousel-testimonials blockquote p{
  53.     padding-bottom: 30px;
  54. }
  55. #carousel-testimonials blockquote cite{
  56.     color: black;
  57. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement