Guest User

Untitled

a guest
Nov 21st, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. .cart-upsell {
  2. padding: 20px;
  3. text-align: center;
  4. margin: 20px;
  5. border: 2px solid #e28413;
  6. border-radius: 5px;
  7. }
  8. .cart-upsell-row {
  9. display: -webkit-flex;
  10. display: flex;
  11. -webkit-flex-direction: row /* works with row or column */
  12. flex-direction: row;
  13. -webkit-align-items: center;
  14. align-items: center;
  15. -webkit-justify-content: center;
  16. justify-content: center;
  17. }
  18. .make-rush-order {
  19. max-width: 200px;
  20. margin-top: 10px;
  21. color: white !important;
  22. }
  23. .make-rush-details {
  24. font-size: 11px;
  25. line-height: 1.2em;
  26. }
  27. .cart-upsell-image {
  28. max-width: 25%;
  29. margin: 10px;
  30. }
  31. .cart-upsell-image img {
  32. max-width:100%;
  33. max-height:100%;
  34. }
  35. @media (max-width: 768px) {
  36. .cart-upsell-image {
  37. display: none;
  38. }
  39. }
Add Comment
Please, Sign In to add comment