Advertisement
Guest User

Untitled

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