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
+14
View File
@@ -0,0 +1,14 @@
[
{
"FileName": "FirstAvatar.png",
"Title": "First avatar I ever made",
"CreationDate": "2016-07-31T00:00:00",
"Description": ""
},
{
"FileName": "VectorAvatar.svg",
"Title": "First avatar I made in vector",
"CreationDate": "2019-08-15T00:00:00",
"Description": ""
}
]
+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);
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 267 KiB