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.

_transcription-subtitles.scss 624B

1234567891011121314151617181920212223242526
  1. .transcription-subtitles {
  2. bottom: $newToolbarSize + 40px;
  3. font-size: 16px;
  4. font-weight: 1000;
  5. left: 50%;
  6. max-width: 50vw;
  7. opacity: 0.80;
  8. overflow-wrap: break-word;
  9. pointer-events: none;
  10. position: absolute;
  11. text-shadow: 0px 0px 1px rgba(0,0,0,0.3),
  12. 0px 1px 1px rgba(0,0,0,0.3),
  13. 1px 0px 1px rgba(0,0,0,0.3),
  14. 0px 0px 1px rgba(0,0,0,0.3);
  15. transform: translateX(-50%);
  16. z-index: $subtitlesZ;
  17. &.lifted {
  18. // Lift subtitle above toolbar+dominant speaker box.
  19. bottom: $newToolbarSize + 36px + 40px;
  20. }
  21. span {
  22. background: black;
  23. }
  24. }