A Telegram Bot for collecting the photos of your children
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

67 lines
920 B

/* CSS inspired by https://css-tricks.com/adaptive-photo-layout-with-flexbox/ */
/* Common */
h1 {
font-family: sans-serif;
}
/* Album */
body.album {
margin: 3vh;
}
.album ul {
display: flex;
flex-wrap: wrap;
align-items: flex-start;
padding: 0;
margin: 0;
}
.album li {
height: 20vh;
flex-grow: 0.5;
list-style-type: none;
}
.album li img, .album li video {
max-height: 100%;
min-width: 100%;
object-fit: cover;
vertical-align: bottom;
}
.album li:last-child {
flex-grow: 10;
}
/* Album */
.media div {
height: 100%;
width: 100%;
display: flex;
justify-content: center
}
html, body.media {
height: 100%;
margin: 0
}
body.media h1 {
position: fixed;
bottom: 0px;
left: 10%;
right: 10%;
background-color: #888888AA;
padding: 1vh;
}
.media div img, .media div video {
object-fit: contain;
}