-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.css
94 lines (79 loc) · 1.59 KB
/
home.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
body {
font-family: Arial, sans-serif;
background-color: #f5f5f5;
margin: 0;
padding: 0;
}
.container {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 20px;
}
.sidebar {
width: 20%;
max-width: 200px; /* Limite la largeur de la barre de catégorie */
background-color: #fff;
padding: 10px;
border: 1px solid #ddd;
}
.sidebar h2 {
font-size: 18px;
margin-bottom: 10px;
}
.book-panel {
width: 75%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.product {
background-color: #fff;
width: 50%;
height: auto;
max-width: 200px; /* Limite la largeur des produits */
margin-bottom: 20px;
border: 1px solid gray;
padding: 10px;
text-align: center;
}
.product img {
max-width: 100%;
}
.product h3 {
font-size: 16px;
}
.product a {
display: block;
margin-top: 10px;
background-color: #007BFF;
color: #fff;
padding: 5px 10px;
text-align: center;
text-decoration: none;
border-radius: 5px;
}
/* Affichage sur les téléphones */
@media screen and (max-width: 768px) {
.container {
flex-direction: column;
}
.sidebar {
width: 100%;
max-width: none; /* Supprime la limite de largeur */
}
.product-panel {
width: 100%;
}
.product {
width: 100%;
}
.product img {
float: left; /* Place l'image à gauche */
margin-right: 10px;
max-width: 40%; /* Ajuste la largeur de l'image */
}
.product h3 {
margin-top: 0;
}
}