-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
109 lines (108 loc) · 1.99 KB
/
style.css
File metadata and controls
109 lines (108 loc) · 1.99 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
99
100
101
102
103
104
105
106
107
108
109
body {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(120deg, #232837 0%, #2e3350 50%, #1a1f2b 100%);
background-size: 200% 200%;
animation: gradientMove 8s ease-in-out infinite;
color: #e6e6e6;
margin: 0;
padding: 0;
}
@keyframes gradientMove {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.container {
max-width: 800px;
margin: 40px auto;
background: rgba(35, 40, 55, 0.92);
border-radius: 18px;
box-shadow: 0 2px 32px rgba(0, 0, 0, 0.32);
padding: 38px 30px;
backdrop-filter: blur(2px);
}
h1 {
text-align: center;
color: #f7f7fa;
margin-bottom: 36px;
letter-spacing: 1px;
}
.team-list {
display: flex;
flex-wrap: wrap;
gap: 36px;
justify-content: center;
}
.team-card {
background: linear-gradient(135deg, #2e3350 0%, #232837 100%);
border-radius: 16px;
box-shadow: 0 2px 16px rgba(0, 0, 0, 0.22);
padding: 30px 22px;
width: 235px;
text-align: center;
transition:
box-shadow 0.2s,
transform 0.2s;
border: 1.5px solid #3b4261;
position: relative;
overflow: hidden;
}
.team-card::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(
120deg,
rgba(59, 130, 246, 0.08) 0%,
rgba(255, 255, 255, 0.03) 100%
);
z-index: 0;
border-radius: 16px;
}
.team-card > * {
position: relative;
z-index: 1;
}
.team-card:hover {
box-shadow: 0 6px 28px rgba(0, 0, 0, 0.28);
transform: translateY(-4px) scale(1.03);
border-color: #3b82f6;
}
.profile-pic {
width: 84px;
height: 84px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 18px;
border: 2.5px solid #2d3346;
background: #181c24;
transition: border 0.2s;
}
.team-card:hover .profile-pic {
border: 2.5px solid #3b82f6;
}
.name {
font-size: 1.22em;
font-weight: 700;
color: #f7f7fa;
margin-bottom: 10px;
letter-spacing: 0.5px;
}
.quote {
font-style: italic;
color: #b3b8c5;
font-size: 1.04em;
margin-bottom: 2px;
}
a {
text-decoration: none;
}