Fetchimage.css

FetchImage.css
 avatar
unknown
plain_text
a year ago
546 B
5
Indexable
/* Grid container for fetched images */
.image-grid-container {
    margin: 20px auto;
    width: 100%;
    max-width: 1000px;
}

/* Image grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 15px;
    margin-bottom: 20px;
}

/* Individual image item */
.image-item {
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.image-item img {
    width: 100%;
    height: auto;
}
.fetch-image{
    color:black;
}
Editor is loading...
Leave a Comment