-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
50 lines (50 loc) · 1.61 KB
/
style.css
File metadata and controls
50 lines (50 loc) · 1.61 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
:root{
--bg:#0f1724;
--card:#0b1220;
--accent:#ff6b6b;
--muted:#94a3b8;
--glass: rgba(255,255,255,0.04);
}
*{box-sizing:border-box}
html,body,#root{height:100%}
body{
margin:0;
font-family:Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
background: linear-gradient(135deg,#071021 0%, #0f1724 100%);
color:#e6eef8;
display:flex;
align-items:center;
justify-content:center;
min-height:100vh;
}
.app{
width:min(720px,94vw);
padding:28px;
}
.header{display:flex;flex-direction:column;align-items:center;margin-bottom:18px}
.title{font-size:28px;font-weight:700}
.tagline{color:var(--muted);font-size:13px;margin-top:6px}
.card{
background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
border-radius:14px;
padding:26px;
box-shadow: 0 10px 30px rgba(2,6,23,0.6);
display:flex;
flex-direction:column;
gap:18px;
align-items:center;
}
.avatar{
font-size:64px;
width:96px;height:96px;
display:grid;place-items:center;border-radius:50%;background:var(--glass);backdrop-filter:blur(6px)
}
.quote{
font-size:20px;line-height:1.4;text-align:center;margin:0;padding:0 6px;
}
.meta{display:flex;gap:8px;align-items:center}
.primary{background:var(--accent);border:none;color:white;padding:10px 16px;border-radius:10px;cursor:pointer}
button, a.tweet{font-weight:600;padding:8px 12px;border-radius:8px;border:none;background:transparent;color:var(--muted);cursor:pointer}
button:hover, a.tweet:hover{color:white}
.footer{margin-top:12px;text-align:center;color:var(--muted);font-size:12px}
@media (max-width:420px){.quote{font-size:18px}}