blob: 92e3a4883f31a9dd24c0d673397f0b814440e802 (
plain)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
body {
background: #282828;
color: #ebdbd2;
font-family: sans-serif;
}
body > * {
max-width: 44em;
margin: 0 auto;
}
header {
text-align: center;
}
section {
border: 1px solid #3c3836;
padding: 0.6em;
}
section > :first-child {
margin-top: 0;
}
footer {
text-align: center;
color: #928374;
font-size: 80%;
padding: 1em;
}
h1 {
color: #928374;
}
h2 {
background: #3c3836;
padding: 0.2em 0.5em;
}
a:not(.recent-item):link,
a.recent-item:link .name {
color: #458588;
}
a:not(.recent-item):hover,
a.recent-item:hover .name {
color: #83a598;
}
a:not(.recent-item):visited,
a.recent-item:visited .name {
color: #b16286;
}
a:not(.recent-item):visited:hover,
a.recent-item:visited:hover .name {
color: #d3869b;
}
a:not(.recent-item):active,
a:not(.recent-item):visited:active {
color: #fb4934;
}
.recent-item .name {
text-decoration: underline;
min-width: 52%;
}
.recent-item .id {
font-family: monospace;
min-width: 52%;
}
.recent-item {
color: inherit;
text-decoration: none;
display: block;
padding: 0.3em 0.2em;
border-bottom: 1px dashed #3c3836;
}
.recent-item:hover {
background: #3c3836;
cursor: pointer;
}
.recent-item:active {
background: #584945;
}
.recent-item > .details {
color: #928374;
font-size: 80%;
}
.left-right {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.left-right > * {
display: block;
min-width: fit-content;
line-height: 1.4em;
}
|