header.html 898 Bytes
Newer Older
hepj's avatar
hepj committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<style>
  .notification-bar {
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    padding: 0 6px 0 6px;
  }
  .notification-bar p {
    margin: 0;
  }
  .notification-bar a {
    font-weight: bold;
    text-decoration: none;
  }

  /* Light mode styles (default) */
  .notification-bar {
    background-color: #fff3cd;
    color: #856404;
  }
  .notification-bar a {
    color: #d97706;
  }

  /* Dark mode styles */
  html[data-theme=dark] .notification-bar {
    background-color: #333;
    color: #ddd;
  }
  html[data-theme=dark] .notification-bar a {
    color: #ffa500; /* Brighter color for visibility */
  }
</style>

<!-- <div class="notification-bar">
  <p>You are viewing the latest developer preview docs. <a href="https://docs.vllm.ai/en/stable/">Click here</a> to view docs for the latest stable release.</p>
</div> -->