23 lines
322 B
CSS
23 lines
322 B
CSS
|
|
body {
|
|
font-family: sans-serif;
|
|
margin: 20px;
|
|
}
|
|
|
|
.manga-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
|
|
gap: 20px;
|
|
}
|
|
|
|
.manga-card {
|
|
border: 1px solid #ccc;
|
|
padding: 10px;
|
|
text-align: center;
|
|
}
|
|
|
|
.manga-card img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|