github.com/kubeshop/testkube@v1.17.23/docs/src/theme/Navbar/styles.module.css (about)

     1  .announcement {
     2    --announcementBar-background: #fff;
     3    --announcementBar-color: #000;
     4    display: flex;
     5    justify-content: center;
     6    align-items: center;
     7    gap: 16px;
     8    position: sticky;
     9    top: var(--ifm-navbar-height);
    10    z-index: var(--ifm-z-index-fixed);
    11    padding: 10px 20px;
    12    text-align: center;
    13    font-size: 14px;
    14    background: var(--announcementBar-background);
    15    color: var(--announcementBar-color);
    16  }
    17  
    18  .announcement[aria-disabled=true] {
    19    z-index: 0;
    20  }
    21  
    22  .announcement a {
    23    color: inherit;
    24    text-decoration: underline;
    25  }
    26  
    27  .announcement a:hover,
    28  .announcement a:focus {
    29    text-decoration: none;
    30  }
    31  
    32  .announcementContent {
    33    margin: 0 auto;
    34  }
    35  
    36  .announcementClose {
    37    cursor: pointer;
    38    display: block;
    39    appearance: none;
    40    border: 0;
    41    padding: 0;
    42    margin: 0;
    43    background: transparent;
    44    color: inherit;
    45    font: inherit;
    46    font-size: 1.5em;
    47    line-height: 1em;
    48    width: 1em;
    49    min-width: 1em;
    50    border-radius: 50%;
    51    text-align: center;
    52  }
    53  
    54  .announcementClose:hover,
    55  .announcementClose:focus {
    56    background: var(--announcementBar-color);
    57    color: var(--announcementBar-background);
    58  }