Advertisement
Guest User

Untitled

a guest
Oct 18th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.20 KB | None | 0 0
  1. .reviews {
  2.   padding: 0px;
  3.   margin: 30px 0;
  4. }
  5. .reviews figure img {
  6.   margin: auto;
  7. }
  8. .reviews blockquote {
  9.   background: #eeeeee;
  10.   overflow: hidden;
  11.   margin: 10px 0 20px 0;
  12.   min-height: 160px;
  13.   border: none;
  14.   font-size: 14px;
  15.   overflow: visible;
  16.   line-height: normal;
  17.   font-family: "argosbook";
  18.   text-align: left;
  19.   padding: 20px;
  20.   position: relative;
  21. }
  22. .reviews blockquote:after {
  23.   position: absolute;
  24.   bottom: -18px;
  25.   content: "";
  26.   width: 0px;
  27.   height: 0px;
  28.   border-left: 0px solid transparent;
  29.   border-right: 20px solid transparent;
  30.   border-top: 20px solid #eeeeee;
  31.   left: 30px;
  32. }
  33. .reviews blockquote img {
  34.   display: block;
  35. }
  36. .reviews blockquote span {
  37.   font-weight: bold;
  38.   margin: 5px 0;
  39.   display: block;
  40.   margin-top: 10px;
  41. }
  42. .reviews cite {
  43.   font-family: "argosbook";
  44.   text-align: left;
  45.   font-style: normal;
  46.   font-size: 18px;
  47. }
  48. .reviews cite span {
  49.   display: block;
  50. }
  51. .reviews cite span.review-name:before {
  52.   background: url('../images/avatar.png');
  53.   background-repeat: no-repeat;
  54.   background-position: 50% 50%;
  55.   content: "";
  56.   height: 24px;
  57.   width: 24px;
  58.   margin-right: 5px;
  59.   display: inline-block;
  60.   vertical-align: middle;
  61. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement