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.

_video-preview.css 809B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. .video-preview {
  2. &-entry {
  3. cursor: pointer;
  4. height: 135px;
  5. margin-bottom: 16px;
  6. position: relative;
  7. width: 240px;
  8. &:last-child {
  9. margin-bottom: 0;
  10. }
  11. &--selected {
  12. border: 3px solid #31B76A;
  13. cursor: default;
  14. height: 129px;
  15. width: 234px;
  16. }
  17. }
  18. &-video {
  19. height: 100%;
  20. object-fit: cover;
  21. width: 100%;
  22. }
  23. &-overlay {
  24. background: rgba(42, 58, 75, 0.6);
  25. height: 100%;
  26. position: absolute;
  27. width: 100%;
  28. z-index: 1;
  29. }
  30. &-error {
  31. align-items: center;
  32. display: flex;
  33. height: 100%;
  34. justify-content: center;
  35. position: absolute;
  36. width: 100%;
  37. }
  38. }