Advertisement
Guest User

Blockquote code from Upfront Custom CSS article

a guest
Jun 29th, 2015
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.57 KB | None | 0 0
  1. blockquote {
  2. background:#ufc3;
  3. padding:30px;
  4. border-radius:5px;
  5. position:relative;
  6. margin:20px 0 40px;
  7. }
  8. blockquote.upfront-quote-alternative {
  9. background:none;
  10. border-left:3px solid #ufc3;
  11. border-radius:0;
  12. padding:5px 15px;
  13. margin-left:15px;
  14. }
  15. blockquote.upfront-quote-alternative:before, blockquote.upfront-quote-alternative:after {
  16. display:none;
  17. }
  18. blockquote:after {
  19. content:'';
  20. width: 0;
  21. height: 0;
  22. border: 0 solid transparent;
  23. border-left-width: 9px;
  24. border-right-width: 0px;
  25. border-top: 10px solid #ufc3;
  26. position:absolute;
  27. bottom:-10px;
  28. left:45px;
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement