Advertisement
SnoopSheep2001

Untitled

Apr 14th, 2023
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. .book-list-container {
  2. margin: 50px auto;
  3. max-width: 1000px;
  4. }
  5.  
  6. .book-list {
  7. display: grid;
  8. grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  9. gap: 30px;
  10. justify-items: center;
  11. }
  12.  
  13. .book {
  14. display: flex;
  15. flex-direction: column;
  16. align-items: center;
  17. padding: 20px;
  18. border-radius: 10px;
  19. box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  20. transition: transform 0.2s ease-in-out;
  21. cursor: pointer;
  22. }
  23.  
  24. .book:hover {
  25. transform: translateY(-5px);
  26. }
  27.  
  28. .book img {
  29. max-width: 100%;
  30. margin-bottom: 10px;
  31. border-radius: 5px;
  32. }
  33.  
  34. .book h3 {
  35. font-size: 20px;
  36. font-weight: bold;
  37. text-align: center;
  38. margin-bottom: 10px;
  39. }
  40.  
  41. .book p {
  42. font-size: 16px;
  43. text-align: center;
  44. margin-bottom: 10px;
  45. line-height: 1.2;
  46. }
  47.  
  48. .book .description {
  49. font-size: 14px;
  50. text-align: justify;
  51. margin-top: 10px;
  52. display: none;
  53. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement