This commit is contained in:
2024-06-06 09:03:37 +02:00
parent c1112d8b21
commit 5f58589713
4 changed files with 89 additions and 1 deletions

39
styly/galeria.css Normal file
View File

@@ -0,0 +1,39 @@
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f0f0f0;
}
.gallery {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 10px;
}
.gallery-item {
position: relative;
text-align: center;
}
.gallery-item img {
width: 100%;
height: auto;
display: block;
}
.gallery-item button {
margin-top: 5px;
padding: 5px 10px;
background-color: #007bff;
color: white;
border: none;
cursor: pointer;
}
.gallery-item button:hover {
background-color: #0056b3;
}