-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPartnersSection.module.css
More file actions
55 lines (50 loc) · 947 Bytes
/
PartnersSection.module.css
File metadata and controls
55 lines (50 loc) · 947 Bytes
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
.section {
padding: 80px 0;
position: relative;
overflow: hidden;
}
.track {
display: flex;
align-items: center;
gap: 20px;
max-width: var(--max-width);
margin: 0 auto;
padding: 0 24px;
flex-wrap: wrap;
justify-content: center;
}
.logo {
display: flex;
align-items: center;
gap: 8px;
font-family: var(--font-display);
font-size: 0.8rem;
font-weight: 600;
letter-spacing: 2px;
text-transform: uppercase;
color: var(--text-dim);
padding: 12px 20px;
border: 1px solid var(--border-dim);
border-radius: var(--radius-sm);
transition: all 0.4s ease;
white-space: nowrap;
cursor: default;
}
.logo:hover {
color: var(--cyan);
border-color: var(--border-glow);
box-shadow: 0 0 20px rgba(0, 159, 227, 0.08);
transform: translateY(-2px);
}
.emoji {
font-size: 1.2rem;
}
@media (max-width: 768px) {
.track {
gap: 12px;
}
.logo {
font-size: 0.65rem;
padding: 8px 14px;
}
}