2021-04-08 17:52:31 +04:00
|
|
|
/*
|
|
|
|
* https://github.com/morethanwords/tweb
|
|
|
|
* Copyright (C) 2019-2021 Eduard Kuzmenko
|
|
|
|
* https://github.com/morethanwords/tweb/blob/master/LICENSE
|
|
|
|
*/
|
|
|
|
|
2020-08-26 14:04:37 +03:00
|
|
|
.gifs-masonry {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
|
|
> .gif {
|
|
|
|
flex: 1 0 auto;
|
|
|
|
max-width: 100%;
|
|
|
|
height: 100px;
|
|
|
|
margin: 2.5px;
|
|
|
|
cursor: pointer;
|
|
|
|
//background: #000;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
video, img {
|
|
|
|
object-fit: cover;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
}
|
2021-01-11 19:21:03 +04:00
|
|
|
|
|
|
|
.preloader-container {
|
|
|
|
z-index: 2;
|
|
|
|
}
|
2020-08-26 14:04:37 +03:00
|
|
|
}
|