Create homepage

Photo-card layout, button, typography
This commit is contained in:
2021-09-27 23:23:16 +02:00
parent 9b50723183
commit bd89e28e15
10 changed files with 269 additions and 9 deletions

View File

@@ -0,0 +1,15 @@
.photo-card {
picture {
width: 100%;
height: 100%;
overflow: hidden;
border-radius: 8px;
box-shadow: 0 16px 12px rgba(#000, 0.15), 0 26px 52px rgba(#000, 0.2);
}
img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
}
}