blob: 2ec823a58d4880df6146a7884652d0361227c79d (
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
|
@import "/static/css/colors.css";
@import "/static/css/form.css";
@import "/static/css/table.css";
@import "/static/css/chat.css";
@font-face {
font-family: 'GeistMono';
src: url('/static/fonts/GeistMono-Medium.ttf') format('truetype');
}
* {
box-sizing: border-box;
font-family: GeistMono;
}
html {
margin: 0;
padding: 0;
color: var(--text-color);
}
body {
background-color: var(--background-color);
min-height: 100vh;
}
hr {
border: 0;
border-top: 1px solid var(--text-color);
margin: 20px 0;
}
.container {
max-width: 1600px;
margin: auto;
background-color: var(--container-bg);
padding: 1rem;
}
a {
color: var(--link-color);
text-decoration: none;
font-weight: bold;
}
a:hover {
text-decoration: underline;
}
.info {
margin-bottom: 1rem;
max-width: 600px;
transition: opacity 0.3s;
}
.info:hover {
opacity: 0.8;
}
|