-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
92 lines (75 loc) · 1.35 KB
/
Copy pathstyles.css
File metadata and controls
92 lines (75 loc) · 1.35 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
:root {
--font-sans: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
--surface: #ffffff;
--background: #f7f7f5;
--text-primary: #191919;
--text-muted: #6c757d;
--accent: #111827;
--border-subtle: rgba(15, 23, 42, 0.08);
}
[v-cloak] {
display: none !important;
}
body {
font-family: var(--font-sans);
background-color: var(--background);
color: var(--text-primary);
-webkit-font-smoothing: antialiased;
}
main section {
scroll-margin-top: 5rem;
}
@media (min-width: 992px) {
main section {
scroll-margin-top: 6.25rem;
}
}
.letter-spacing-sm {
letter-spacing: 0.08em;
}
.letter-spacing-wide {
letter-spacing: 0.2em;
}
.navbar-brand {
font-size: 0.9rem;
}
.navbar-nav .nav-link {
letter-spacing: 0.14em;
font-size: 0.75rem;
}
.card {
border-radius: 1.25rem;
}
.card-body {
padding: 2rem;
}
.writing-detail {
background: var(--surface);
border: 1px solid var(--border-subtle);
border-radius: 1.5rem;
padding: 2.5rem 2rem;
box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08);
}
.article-body p {
font-size: 1.05rem;
line-height: 1.7;
}
.btn-link {
color: var(--accent);
text-decoration: none;
font-weight: 600;
}
.btn-link:hover,
.btn-link:focus {
text-decoration: underline;
}
a {
text-underline-offset: 0.2em;
}
a:hover,
a:focus {
color: var(--accent);
}
footer {
background: transparent;
}