-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathjwt-panel.css
57 lines (57 loc) · 882 Bytes
/
jwt-panel.css
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
table {
font-size: small;
}
.wrap-anywhere {
overflow-wrap: anywhere;
}
.wrap-words {
overflow-wrap: break-word;
}
td:first-child {
color: green;
font-weight: bold;
text-align: right;
vertical-align: text-top;
padding-right: 0.5em;
min-width: 70px;
max-width: 50%;
}
td:first-child::after {
content: ":";
}
.ts {
font-style: italic;
color: firebrick;
}
.ts::before {
content: " (";
}
.ts::after {
content: ")";
}
fieldset {
border: 2px solid #000;
border-radius:8px;
margin-bottom: 0.5em;
}
legend {
color: #000;
}
@media (prefers-color-scheme: dark) {
* {
color: silver;
background-color: #202124;
}
button {
background-color: silver;
color: #202124;
}
td:first-child { color: darkseagreen; }
.ts { color: lightcoral; }
fieldset {
border: thick solid #494c50;
}
legend {
color: #9aa0a5;
}
}