1
0

Implemented gallery

This commit is contained in:
Michael Gordeev
2019-10-10 20:19:12 +03:00
parent 3ec8522eb5
commit 70276f5fd7
8 changed files with 72 additions and 12 deletions
+15
View File
@@ -102,4 +102,19 @@ header a:hover {
article a:visited {
color: blue;
}
.gallery {
margin: 50px;
}
.gallery img {
transition: .25s;
object-fit: cover;
max-width: 300px;
height: 200px;
margin: 2px;
}
.gallery img:hover {
filter: brightness(125%);
transform: scale(1.25);
}