Skip to content

Commit

Permalink
Simplify integration section design to match website theme
Browse files Browse the repository at this point in the history
  • Loading branch information
Mizokuiam committed Dec 28, 2024
1 parent eb5ec92 commit af58ffd
Showing 1 changed file with 9 additions and 17 deletions.
26 changes: 9 additions & 17 deletions docs/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -627,22 +627,20 @@ main {
.integrations {
padding: 80px 20px;
text-align: center;
background: #0F172A;
background: transparent;
}

.integrations h2 {
margin-bottom: 60px;
font-size: 2.5em;
background: linear-gradient(45deg, #4F46E5, #7C3AED);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
color: #E2E8F0;
}

.integration-grid {
display: flex;
justify-content: center;
align-items: center;
gap: 60px;
gap: 80px;
max-width: 1200px;
margin: 0 auto;
flex-wrap: wrap;
Expand All @@ -653,23 +651,17 @@ main {
flex-direction: column;
align-items: center;
gap: 15px;
padding: 20px;
transition: transform 0.3s ease;
}

.integration-logo:hover {
transform: translateY(-5px);
}

.integration-logo img {
height: 60px;
height: 40px;
object-fit: contain;
filter: grayscale(100%) brightness(0.8);
transition: filter 0.3s ease;
opacity: 0.7;
transition: opacity 0.3s ease;
}

.integration-logo:hover img {
filter: grayscale(0%) brightness(1);
opacity: 1;
}

.integration-logo span {
Expand All @@ -680,11 +672,11 @@ main {

@media (max-width: 768px) {
.integration-grid {
gap: 30px;
gap: 40px;
}

.integration-logo img {
height: 50px;
height: 35px;
}
}

Expand Down

0 comments on commit af58ffd

Please sign in to comment.