mirror of
https://github.com/Gabi-Zar/Images-Scrapper-JS.git
synced 2026-04-17 05:36:06 +02:00
Improve images scrapping from bing and show images on the client
This commit is contained in:
@@ -98,3 +98,30 @@ body {
|
||||
position: fixed;
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
.images-div {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, 150px);
|
||||
gap: 20px;
|
||||
justify-content: center;
|
||||
margin-top: 50px;
|
||||
}
|
||||
|
||||
.image-box {
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
border-radius: 16px;
|
||||
overflow: hidden;
|
||||
transition: transform 0.2s;
|
||||
}
|
||||
|
||||
.image-box:hover {
|
||||
transform: scale(3);
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
.image-box img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user