-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
95 lines (86 loc) · 2.11 KB
/
Copy pathstyles.css
File metadata and controls
95 lines (86 loc) · 2.11 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
:root {
--bg: #09090b;
--panel: #18181b;
--text: #f4f4f5;
--muted: #a1a1aa;
--accent: #7c3aed;
--accent-2: #c4b5fd;
}
* { box-sizing: border-box; }
body {
margin: 0;
font-family: Inter, system-ui, sans-serif;
background: linear-gradient(180deg, #09090b, #111827);
color: var(--text);
}
.topbar {
position: sticky;
top: 0;
background: rgba(9, 9, 11, 0.8);
backdrop-filter: blur(8px);
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 2rem;
border-bottom: 1px solid #27272a;
}
.brand { font-size: 1.25rem; font-weight: 700; text-transform: lowercase; }
nav a { color: var(--muted); text-decoration: none; margin-left: 1rem; }
nav a:hover { color: var(--text); }
main { max-width: 980px; margin: 0 auto; padding: 2rem 1rem 4rem; }
.hero { padding: 3rem 0; }
.badge {
display: inline-block;
background: rgba(124, 58, 237, 0.2);
border: 1px solid rgba(196, 181, 253, 0.4);
color: var(--accent-2);
border-radius: 999px;
padding: .25rem .75rem;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); margin: 1rem 0; }
.hero p { color: var(--muted); max-width: 70ch; }
.actions { display: flex; gap: .75rem; margin-top: 1.2rem; }
button, .secondary {
border: 1px solid transparent;
border-radius: .75rem;
padding: .7rem 1rem;
text-decoration: none;
color: var(--text);
cursor: pointer;
}
.primary { background: var(--accent); }
.secondary { border-color: #3f3f46; }
.grid {
display: grid;
gap: 1rem;
grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}
.card {
background: var(--panel);
border: 1px solid #27272a;
padding: 1rem;
border-radius: 1rem;
}
.card p { color: var(--muted); }
.timeline, .contact { margin-top: 2.5rem; }
ol { color: var(--muted); line-height: 1.8; }
form {
display: grid;
gap: .8rem;
max-width: 520px;
}
label { display: grid; gap: .35rem; color: var(--muted); }
input, textarea {
width: 100%;
border: 1px solid #3f3f46;
background: #111827;
color: var(--text);
border-radius: .6rem;
padding: .65rem;
}
footer {
border-top: 1px solid #27272a;
text-align: center;
color: var(--muted);
padding: 1.2rem;
}