Skip to content

Commit c63c421

Browse files
authored
Update style.css
1 parent 5791e66 commit c63c421

File tree

1 file changed

+55
-1
lines changed

1 file changed

+55
-1
lines changed

style.css

Lines changed: 55 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,7 @@ footer .maker a {
194194
}
195195

196196
#rules li {
197+
cursor: default;
197198
background: var(--card);
198199
padding: 15px 20px;
199200
border-radius: 10px;
@@ -227,6 +228,59 @@ footer .maker a {
227228
color: #ff4d4d;
228229
}
229230

231+
.people-grid {
232+
display: grid;
233+
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
234+
gap: 30px;
235+
margin-top: 40px;
236+
}
237+
238+
.person-card {
239+
cursor: default;
240+
background: var(--card);
241+
padding: 25px;
242+
border-radius: 15px;
243+
text-align: center;
244+
border: 1px solid rgba(255, 255, 255, 0.05);
245+
}
246+
247+
.person-card:hover {
248+
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
249+
}
250+
251+
.person-card .img {
252+
width: 120px;
253+
height: 120px;
254+
border-radius: 50%;
255+
object-fit: cover;
256+
margin-bottom: 15px;
257+
}
258+
259+
.person-card h3 {
260+
margin: 10px 0 5px;
261+
}
262+
263+
.role {
264+
color: var(--primary);
265+
font-weight: bold;
266+
margin-bottom: 10px;
267+
}
268+
269+
.desc {
270+
font-size: 0.9rem;
271+
color: var(--muted);
272+
line-height: 1.5;
273+
}
274+
275+
.intro-img {
276+
width: 100%;
277+
max-width: 300px;
278+
height: auto;
279+
display: block;
280+
margin: 10px auto 0;
281+
object-fit: contain;
282+
}
283+
230284
@media (max-width: 768px) {
231285
#hero h1 {
232286
font-size: 1.7rem;
@@ -288,4 +342,4 @@ footer .maker a {
288342
footer {
289343
font-size: 0.8rem;
290344
}
291-
}
345+
}

0 commit comments

Comments
 (0)