Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- .book-list-container {
- margin: 50px auto;
- max-width: 1000px;
- }
- .book-list {
- display: grid;
- grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
- gap: 30px;
- justify-items: center;
- }
- .book {
- display: flex;
- flex-direction: column;
- align-items: center;
- padding: 20px;
- border-radius: 10px;
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
- transition: transform 0.2s ease-in-out;
- cursor: pointer;
- }
- .book:hover {
- transform: translateY(-5px);
- }
- .book img {
- max-width: 100%;
- margin-bottom: 10px;
- border-radius: 5px;
- }
- .book h3 {
- font-size: 20px;
- font-weight: bold;
- text-align: center;
- margin-bottom: 10px;
- }
- .book p {
- font-size: 16px;
- text-align: center;
- margin-bottom: 10px;
- line-height: 1.2;
- }
- .book .description {
- font-size: 14px;
- text-align: justify;
- margin-top: 10px;
- display: none;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement