-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.css
More file actions
121 lines (104 loc) · 2.08 KB
/
about.css
File metadata and controls
121 lines (104 loc) · 2.08 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
110
111
112
113
114
115
116
117
118
119
120
121
/* ============================================
ABOUT PAGE
============================================ */
.about-grid {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: var(--space-12);
align-items: start;
}
.about-text p {
max-width: 55ch;
line-height: 1.7;
}
.about-values {
display: flex;
flex-direction: column;
gap: var(--space-4);
}
.value-card {
background: var(--white);
border: 1px solid var(--color-border);
border-radius: var(--radius-xl);
padding: var(--space-5);
transition: box-shadow var(--transition-interactive);
}
.value-card:hover {
box-shadow: var(--shadow-md);
}
.value-card h3 {
font-size: var(--text-sm);
font-weight: 700;
margin-top: var(--space-3);
margin-bottom: var(--space-2);
}
.value-card p {
font-size: var(--text-sm);
color: var(--navy-600);
line-height: 1.6;
}
@media (max-width: 768px) {
.about-grid {
grid-template-columns: 1fr;
gap: var(--space-8);
}
}
/* Built By */
.built-by-logo {
display: flex;
justify-content: center;
align-items: center;
gap: var(--space-3);
}
/* Team Grid */
.team-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: var(--space-8);
max-width: 900px;
margin-inline: auto;
}
.team-member {
text-align: center;
}
.team-avatar {
width: 72px;
height: 72px;
border-radius: var(--radius-full);
background: var(--navy-800);
color: var(--white);
display: flex;
align-items: center;
justify-content: center;
font-family: var(--font-display);
font-weight: 700;
font-size: var(--text-lg);
margin: 0 auto var(--space-4);
}
.team-member h3 {
font-size: var(--text-base);
margin-bottom: var(--space-1);
}
.team-member .text-muted {
font-size: var(--text-xs);
font-weight: 600;
}
.team-bio {
display: block;
font-size: var(--text-xs);
color: var(--navy-500);
line-height: 1.5;
margin-top: var(--space-2);
max-width: 30ch;
margin-inline: auto;
}
@media (max-width: 1024px) {
.team-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 480px) {
.team-grid {
grid-template-columns: 1fr;
}
}