-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
66 lines (66 loc) · 1.8 KB
/
styles.css
File metadata and controls
66 lines (66 loc) · 1.8 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
:root { color-scheme: dark; }
* { box-sizing: border-box; }
body {
margin: 0;
font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
background: #0b0d12;
color: #e9eefc;
line-height: 1.5;
}
a { color: inherit; }
.wrap { max-width: 980px; margin: 0 auto; padding: 24px; }
.header { padding-top: 56px; padding-bottom: 24px; }
h1 { margin: 0 0 6px; font-size: 40px; letter-spacing: -0.02em; }
.subtitle { margin: 0 0 18px; opacity: 0.85; }
.card {
background: rgba(255,255,255,0.06);
border: 1px solid rgba(255,255,255,0.10);
border-radius: 18px;
padding: 18px;
margin: 14px 0;
box-shadow: 0 12px 24px rgba(0,0,0,0.25);
}
.buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.btn {
display: inline-block;
padding: 10px 14px;
border-radius: 12px;
text-decoration: none;
background: rgba(255,255,255,0.14);
border: 1px solid rgba(255,255,255,0.18);
}
.btn.secondary { background: transparent; }
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
gap: 12px;
margin-top: 12px;
}
.tile {
display: block;
padding: 14px;
border-radius: 14px;
text-decoration: none;
background: rgba(0,0,0,0.20);
border: 1px solid rgba(255,255,255,0.10);
}
.tile h3 { margin: 0 0 6px; font-size: 16px; }
.tile p { margin: 0; opacity: 0.82; font-size: 14px; }
.muted { opacity: 0.75; }
.gallery {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 12px;
margin-top: 12px;
}
figure { margin: 0; }
img {
width: 100%;
height: auto;
display: block;
border-radius: 14px;
border: 1px solid rgba(255,255,255,0.10);
}
figcaption { margin-top: 8px; font-size: 13px; opacity: 0.78; }
.footer { padding-bottom: 60px; }
code { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }