Advertisement
Guest User

Untitled

a guest
Jul 24th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. .vacation-list {
  2. margin: 0;
  3. padding: 0;
  4. list-style: none;
  5. text-align: center;
  6.  
  7. > .item {
  8. display: inline-block;
  9. vertical-align: top;
  10. text-align: left;
  11. }
  12. }
  13.  
  14. .vacation-card {
  15. margin: 0 auto;
  16. width: 275px;
  17. border-radius: 10px;
  18. overflow: hidden;
  19. font-family: sans-serif;
  20. border: 1px solid #cbd5e0;
  21.  
  22. > .image {
  23. max-width: 100%;
  24. height: auto;
  25. }
  26. }
  27.  
  28. .card-info {
  29. padding: 10px;
  30.  
  31. > .eyebrow {
  32. color: #718096;
  33. text-transform: uppercase;
  34. font-size: 12px;
  35. margin-bottom: 5px;
  36. }
  37.  
  38. > .title {
  39. font-size: 16px;
  40. font-weight: 700;
  41. color: #718096;
  42. text-decoration: none;
  43. }
  44.  
  45. > .price {
  46. padding-top: 5px;
  47. color: #718096;
  48. font-size: 12px;
  49. }
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement