-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
98 lines (80 loc) · 1.44 KB
/
style.css
File metadata and controls
98 lines (80 loc) · 1.44 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
96
97
98
:root {
--accent: #2563eb; /* calm blue */
--bg-soft: #f8fafc; /* very light gray */
--border: #e5e7eb;
--text-main: #111827;
--text-muted: #6b7280;
}
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
max-width: 900px;
margin: 40px auto;
padding: 0 20px;
line-height: 1.65;
color: var(--text-main);
background: white;
}
header {
margin-bottom: 70px;
}
h1 {
font-size: 2.6rem;
margin-bottom: 12px;
letter-spacing: -0.02em;
}
.tagline {
font-size: 1.1rem;
color: var(--text-muted);
}
section {
margin-bottom: 70px;
}
section h2 {
font-size: 1.6rem;
margin-bottom: 16px;
border-bottom: 1px solid var(--border);
padding-bottom: 6px;
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 20px;
}
.card {
background: var(--bg-soft);
border: 1px solid var(--border);
padding: 18px;
border-radius: 8px;
transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover {
transform: scale(1.02);
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.card h3 {
margin-top: 0;
}
a {
color: var(--accent);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
ul {
padding-left: 18px;
}
footer {
border-top: 1px solid var(--border);
padding-top: 24px;
font-size: 0.9rem;
color: var(--text-muted);
}
.logo {
width: 60px;
height: 60px;
object-fit: contain;
}
.logo:hover {
transform: scale(1.05);
}