File: style.css

package info (click to toggle)
litestar 2.19.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 12,500 kB
  • sloc: python: 70,169; makefile: 254; javascript: 105; sh: 60
file content (39 lines) | stat: -rw-r--r-- 668 bytes parent folder | download
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
#version-warning {
  top: 0;
  position: sticky;
  z-index: 60;
  width: 100%;
  height: 2.5rem;
  display: flex;
  column-gap: 0.5rem;
  justify-content: center;
  justify-items: center;
  align-items: center;
  background-color: #eee;
  border-bottom: 2px solid #ae2828;
}

@media (prefers-color-scheme: dark) {
  body:not([data-theme="light"]) #version-warning {
    background-color: black;
  }
}

.breaking-change {
  font-variant: all-small-caps;
  margin-left: 0.4rem;
  color: #f55353;
}

p {
  font-size: 1.1em;
}

html[data-theme="dark"] .mermaid svg {
  background-color: white;
  padding: 1em;
}

html[data-theme="dark"] .mermaid svg p {
  color: black;
}