-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdemo.css
More file actions
83 lines (73 loc) · 1.62 KB
/
demo.css
File metadata and controls
83 lines (73 loc) · 1.62 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
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
background: linear-gradient(135deg, #0d1f34, #0a1426);
color: #eef5ff;
min-height: 100vh;
line-height: 1.6;
}
header {
padding: 32px 24px;
text-align: center;
background: rgba(255, 255, 255, 0.04);
border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
main {
max-width: 960px;
margin: 0 auto;
padding: 48px 24px 80px;
display: grid;
gap: 24px;
}
.card {
background: rgba(255, 255, 255, 0.06);
border: 1px solid rgba(255, 255, 255, 0.12);
border-radius: 16px;
padding: 24px;
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}
.pill {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 6px 12px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 255, 255, 0.12);
color: #d8e6ff;
font-weight: 600;
}
.grid {
display: grid;
gap: 16px;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
padding: 12px 16px;
border-radius: 12px;
border: 1px solid #4ad9d9;
color: #041020;
background: linear-gradient(135deg, #4ad9d9, #f77f64);
font-weight: 700;
text-decoration: none;
box-shadow: 0 10px 24px rgba(74, 217, 217, 0.28);
}
.btn:focus-visible {
outline: 2px solid #4ad9d9;
outline-offset: 2px;
}
.muted {
color: #b8c8e4;
}
footer {
text-align: center;
padding: 32px 24px 48px;
color: #9fb3d7;
}