"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7328/css/_transcription-subtitles.scss" (8 Jun 2023, 624 Bytes) of package /linux/misc/jitsi-meet-7328.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) Sass/SCSS source code syntax highlighting (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

    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 
   18     &.lifted {
   19         // Lift subtitle above toolbar+dominant speaker box.
   20         bottom: $newToolbarSize + 36px + 40px;
   21     }
   22 
   23     span {
   24         background: black;
   25     }
   26 }