"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7688/css/ringing/_ringing.scss" (1 Dec 2023, 803 Bytes) of package /linux/misc/jitsi-meet-7688.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 .ringing {
    2     display: block;
    3     left: 0;
    4     top: 0;
    5     width: 100%;
    6     height: 100%;
    7     position: fixed;
    8     z-index: 300;
    9     @include transparentBg(#283447, 0.95);
   10 
   11     &.solidBG {
   12         background: #040404;
   13     }
   14 
   15     &__content {
   16         position: absolute;
   17         width: 400px;
   18         height: 250px;
   19         left: 50%;
   20         top: 50%;
   21         margin-left: -200px;
   22         margin-top: -125px;
   23         text-align: center;
   24         font-weight: normal;
   25         color: #FFFFFF;
   26     }
   27 
   28     &__avatar {
   29         width: 128px;
   30         height: 128px;
   31         border-radius: 50%;
   32         border: 2px solid #1B2638;
   33     }
   34 
   35     &__status{
   36         margin-top: 15px;
   37         font-size: 14px;
   38         line-height: 20px;
   39     }
   40 
   41     &__name {
   42         font-size: 24px;
   43         line-height: 32px;
   44     }
   45 }