-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
68 lines (57 loc) · 1.01 KB
/
style.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
58
59
60
61
62
63
64
65
66
67
68
:root {
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
line-height: 1.5;
font-weight: 400;
color-scheme: light dark;
background-color: rgb(13, 17, 23);
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
a {
font-weight: 500;
color: var(--activity-graph-text-color);
text-decoration: underline;
}
a:hover {
color: var(--activity-graph-text-color);
text-decoration: none;
}
body {
color: var(--activity-graph-text-color);
padding: 24px;
}
main {
max-width: 500px;
margin: 0 auto;
}
activity-graph {
margin-top: 24px;
margin-bottom: 24px;
}
activity-graph figure {
padding: 16px;
border-radius: 8px;
border: solid 1px rgb(48, 54, 61);
font-size: 12px;
width: 480px;
}
activity-graph table {
margin-right: 12px;
}
/* h1 {
font-size: 2em;
line-height: 1.1;
}
pre {
margin: 0;
}
code {
font-size: 0.9em;
} */
@media (prefers-color-scheme: light) {
:root {
background-color: #ffffff;
}
}