-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
113 lines (94 loc) · 1.34 KB
/
Copy pathstyle.css
File metadata and controls
113 lines (94 loc) · 1.34 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
:root {
--bg: #202020;
--panel: #404040;
--text: #ffffff;
--muted: #a0a0a0;
--line: #606060;
--link: #00a0ff;
--code-bg: #001020;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
padding: 2rem 1rem;
background: var(--bg);
color: var(--text);
font: 16px/1.6 sans-serif;
}
header,
main,
footer {
max-width: 64rem;
margin: 0 auto;
}
.title {
margin: 0;
letter-spacing: 0.5rem;
}
.greet {
margin: 0.5rem 0 1.5rem;
color: var(--muted);
font-weight: 500;
}
h3 {
margin: 0 0 0.5rem;
}
section {
margin: 1rem 0;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(31rem, 1fr));
gap: 1rem;
}
article {
margin: 0;
padding: 1rem;
border: 1px solid var(--line);
border-radius: 1rem;
background: var(--panel);
}
p {
margin: 0 0 0.5rem;
}
a {
color: var(--link);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
code {
display: block;
margin: 0.75rem 0;
padding: 0.75rem;
border-radius: 8px;
border: 1px solid var(--line);
background: var(--code-bg);
color: #d6deeb;
font: 0.92rem/1.45 monospace;
white-space: normal;
}
.key {
color: #ff9cd8;
}
.var {
color: #9ad1ff;
}
.str {
color: #b8e986;
}
.num {
color: #ffd38d;
}
.com {
color: #8f9bb3;
}
.bol {
color: #c7b5ff;
}
footer {
margin-top: 2rem;
color: var(--muted);
font-size: 0.95rem;
}