123456789101112131415161718192021222324 |
- .filmstrip__videos .videocontainer {
- display: inline-block;
- position: relative;
- background-size: contain;
- border: $thumbnailVideoBorder solid transparent;
- border-radius: $borderRadius;
- margin: 0 $thumbnailVideoMargin;
-
- &:hover {
- cursor: hand;
- }
-
- & > video {
- cursor: hand;
- border-radius: $borderRadius;
- object-fit: cover;
- overflow: hidden;
- }
-
- .presence-label {
- position: absolute;
- z-index: $zindex3;
- }
- }
|