-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
92 lines (83 loc) · 4.99 KB
/
Copy pathstyles.css
File metadata and controls
92 lines (83 loc) · 4.99 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 {
--bg: #0b0f17;
--surface: #121826;
--border: #1f2937;
--text: #e5e7eb;
--muted: #94a3b8;
--accent: #34d399;
--accent-2: #6ee7b7;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
background: var(--bg);
color: var(--text);
font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
line-height: 1.6;
-webkit-font-smoothing: antialiased;
}
.container { width: min(1080px, 92%); margin: 0 auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; }
/* nav */
.site-header { position: sticky; top: 0; z-index: 10; backdrop-filter: blur(8px);
background: rgba(11,15,23,.72); border-bottom: 1px solid var(--border); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.brand { font-family: ui-monospace, "SFMono-Regular", Menlo, monospace; font-weight: 700; font-size: 20px; }
.brand span { color: var(--accent); }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a { color: var(--muted); font-size: 15px; transition: color .15s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { color: var(--bg) !important; background: var(--accent); padding: 8px 16px; border-radius: 8px; font-weight: 600; }
.nav-toggle { display: none; background: none; border: 0; color: var(--text); font-size: 22px; cursor: pointer; }
/* hero */
.hero { padding: 96px 0 72px; }
.eyebrow { color: var(--accent); text-transform: uppercase; letter-spacing: .18em; font-size: 13px; font-weight: 600; }
.hero h1 { font-size: clamp(34px, 6vw, 60px); margin: 14px 0 18px; }
.lede { color: var(--muted); font-size: clamp(16px, 2vw, 20px); max-width: 60ch; }
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.btn { display: inline-block; padding: 12px 22px; border-radius: 10px; font-weight: 600; transition: transform .12s, background .15s; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: var(--bg); }
.btn-primary:hover { background: var(--accent-2); }
.btn-ghost { border: 1px solid var(--border); color: var(--text); }
.btn-ghost:hover { border-color: var(--accent); }
/* sections + cards */
.section-title { font-size: clamp(26px, 4vw, 36px); margin-bottom: 32px; }
.services, .work, .about, .contact { padding: 72px 0; border-top: 1px solid var(--border); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 26px; transition: border-color .15s, transform .15s; }
.card:hover { border-color: var(--accent); transform: translateY(-3px); }
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15px; }
/* work */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.work-item { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 24px; display: block; transition: border-color .15s, transform .15s; }
.work-item:hover { border-color: var(--accent); transform: translateY(-3px); }
.tag { display: inline-block; font-size: 12px; color: var(--accent); border: 1px solid var(--border); border-radius: 999px; padding: 3px 10px; margin-bottom: 14px; }
.work-item h3 { font-size: 20px; margin-bottom: 8px; }
.work-item p { color: var(--muted); font-size: 15px; }
/* about */
.split { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center; }
.stats { list-style: none; display: grid; gap: 18px; }
.stats li { display: flex; flex-direction: column; }
.stats strong { font-size: 32px; color: var(--accent); }
.stats span { color: var(--muted); font-size: 14px; }
/* contact + footer */
.contact-form { display: grid; gap: 14px; max-width: 520px; margin-top: 8px; }
.contact-form input, .contact-form textarea { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; color: var(--text); font: inherit; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent); }
.contact .muted, .site-footer .muted { color: var(--muted); margin-top: 16px; font-size: 14px; }
.site-footer { border-top: 1px solid var(--border); padding: 32px 0; }
.site-footer .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
/* interactions */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (max-width: 760px) {
.nav-toggle { display: block; }
.nav-links { position: absolute; top: 100%; right: 4%; flex-direction: column; gap: 14px;
background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 18px 22px; display: none; }
.nav-links.open { display: flex; }
.cards, .work-grid, .split { grid-template-columns: 1fr; }
}
.forum-time { margin-left: 8px; color: #888; font-size: 0.85em; }