-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
77 lines (66 loc) · 1.12 KB
/
styles.css
File metadata and controls
77 lines (66 loc) · 1.12 KB
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
:root {
color-scheme: light;
}
body {
margin: 0;
font-family: "Inter", system-ui, -apple-system, sans-serif;
color: #111827;
background: #ffffff;
}
main {
max-width: 920px;
margin: 0 auto;
padding: 24px 24px 80px;
}
.site-header {
border-bottom: 1px solid #e5e7eb;
padding: 20px 24px 12px;
}
.site-header-inner {
max-width: 920px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
gap: 16px;
}
.site-nav {
display: flex;
align-items: center;
gap: 8px;
}
.site-nav a {
color: #374151;
text-decoration: none;
font-size: 0.925rem;
padding: 0.25rem 0.5rem;
border-radius: 4px;
transition: background-color 0.15s ease;
}
.site-nav a:hover,
.site-nav a.active {
background-color: #f3f4f6;
font-weight: 600;
color: #111827;
}
.site-nav .separator {
color: #d1d5db;
user-select: none;
}
.external-links {
display: flex;
align-items: center;
gap: 8px;
}
.external-links a {
display: flex;
align-items: center;
gap: 6px;
color: #374151;
text-decoration: none;
font-size: 0.925rem;
}
.external-links svg {
width: 18px;
height: 18px;
}