-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
157 lines (138 loc) · 3.12 KB
/
Copy pathstyle.css
File metadata and controls
157 lines (138 loc) · 3.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
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
:root {
--bg: #0a0a0b;
--fg: #e8e8e8;
--muted: #8a8a8a;
--panel: #141416;
--panel-border: #222225;
--accent: #f0f0f0;
--warm: #f4a261;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
background: var(--bg);
color: var(--fg);
font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
-webkit-font-smoothing: antialiased;
min-height: 100vh;
}
main {
max-width: 720px;
margin: 0 auto;
padding: 80px 24px 120px;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.avatar {
width: 110px;
height: 110px;
border-radius: 50%;
object-fit: cover;
border: 1px solid var(--panel-border);
margin-bottom: 24px;
box-shadow: 0 0 60px 8px rgba(244, 162, 97, 0.12);
}
.name {
font-size: 1.05rem;
font-weight: 700;
color: var(--accent);
margin-bottom: 20px;
letter-spacing: 0;
}
.tagline {
font-weight: 400;
font-size: 1.05rem;
line-height: 1.6;
color: var(--fg);
margin-bottom: 48px;
letter-spacing: 0;
}
.tagline br { display: block; }
.links {
display: flex;
gap: 40px;
margin-bottom: 32px;
flex-wrap: wrap;
justify-content: center;
}
.links a {
display: inline-flex;
align-items: center;
gap: 8px;
color: var(--fg);
text-decoration: none;
font-size: 1rem;
opacity: 0.9;
transition: color 0.15s, opacity 0.15s;
}
.links a:hover { color: var(--warm); opacity: 1; }
.install {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
width: 100%;
background: var(--panel);
border: 1px solid var(--panel-border);
border-radius: 8px;
padding: 14px 18px;
margin-bottom: 32px;
font-family: ui-monospace, "SF Mono", Menlo, monospace;
font-size: 0.92rem;
}
.install code {
text-align: left;
overflow-x: auto;
white-space: nowrap;
flex: 1;
color: var(--fg);
}
.install .prompt { color: var(--muted); margin-right: 8px; }
.copy {
background: transparent;
color: var(--fg);
border: 1px solid var(--panel-border);
border-radius: 6px;
padding: 6px 14px;
font-size: 0.85rem;
cursor: pointer;
font-family: inherit;
transition: background 0.15s, border-color 0.15s;
}
.copy:hover { background: #1e1e22; border-color: #2e2e32; }
.copy.copied { color: #6ee7a0; border-color: #2e4a38; }
.terminal {
width: 100%;
background: var(--panel);
border: 1px solid var(--panel-border);
border-radius: 8px;
padding: 20px 22px;
text-align: left;
font-family: ui-monospace, "SF Mono", Menlo, monospace;
font-size: 0.85rem;
line-height: 1.6;
color: var(--fg);
white-space: pre;
overflow-x: auto;
}
.terminal .muted { color: var(--muted); }
.terminal .prompt { color: var(--muted); }
.terminal .cursor { color: var(--fg); }
.footer {
margin-top: 32px;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
font-size: 0.78rem;
color: var(--muted);
}
@media (max-width: 600px) {
main { padding: 56px 16px 80px; }
.avatar { width: 120px; height: 120px; }
.tagline { font-size: 1.4rem; }
.tagline br { display: none; }
.install { font-size: 0.8rem; padding: 12px 14px; }
.terminal { font-size: 0.75rem; padding: 16px; }
}