-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
40 lines (34 loc) · 889 Bytes
/
index.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
.partners-footer {
background-color: #f9f9f9;
padding: 20px;
text-align: center;
border-top: 1px solid #ddd;
}
.partners-footer h4 {
margin-bottom: 20px;
font-size: 1.5em;
}
.partners-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
gap: 20px;
justify-items: center;
align-items: center;
}
.partner-logo {
max-width: 100%;
max-height: 100px; /* Adjust for a consistent height */
object-fit: contain; /* Ensures the image retains its aspect ratio */
filter: grayscale(100%);
transition: filter 0.3s ease, transform 0.3s ease;
}
.partner-logo:hover {
filter: none; /* Removes grayscale on hover */
transform: scale(1.1); /* Slightly enlarges the logo */
}
.divider {
border: none;
height: 3px;
background: linear-gradient(to right, #4caf50, #2196f3);
margin: 50px 0; /* Adds 50px space above and below */
}