-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.css
81 lines (70 loc) · 1.44 KB
/
about.css
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
* {
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
background: linear-gradient(135deg, #f4f4f4, #eaeaea);
margin: 0;
padding: 0;
color: #333;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 40px 20px;
text-align: center;
}
h1 {
font-size: 2.5em;
margin-bottom: 40px;
color: #444;
text-transform: uppercase;
}
.team-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 30px;
}
.team-member {
background: white;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
position: relative;
}
.member-icon {
width: 100px;
height: 100px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 2em;
color: white;
margin: 20px auto;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.member-info {
padding: 20px;
position: relative;
z-index: 1;
background: rgba(255, 255, 255, 0.9);
}
h3 {
margin: 10px 0;
font-size: 1.5em;
color: #2c3e50;
}
.role {
font-weight: bold;
color: #3498db;
}
.bio {
color: #666;
margin: 10px 0 0;
}
.team-member:hover {
transform: translateY(-5px);
box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}