diff --git a/src/routes/integration/article/+page.svelte b/src/routes/integration/article/+page.svelte new file mode 100644 index 0000000000..14738f6bb0 --- /dev/null +++ b/src/routes/integration/article/+page.svelte @@ -0,0 +1,153 @@ + + + + + {title} + + + + + + + + + + + + + + +
+
+
+ +
+
+
+
+
+ +
+
+
+ +
+
+ + +
+
+

+ Become a partner +

+

Join our partner program to integrate your solutions with Appwrite’s API, enhancing functionality and expanding your reach.

+ + Get Started + +
+
+
+
+ + +
+
+
+ + \ No newline at end of file diff --git a/src/scss/7-components/_carousel.scss b/src/scss/7-components/_carousel.scss new file mode 100644 index 0000000000..b1bdbe7813 --- /dev/null +++ b/src/scss/7-components/_carousel.scss @@ -0,0 +1,29 @@ +@use '../abstract' as *; + +.#{$p}-carousel { + position: relative; + &::before { + content:""; display:block; + position:absolute; z-index:1; inset:0; inset-inline:pxToRem(-200); + background: linear-gradient(90deg, rgba(23, 23, 26, 1) 0%, rgba(23, 23, 26, 0.88) 9.65%, rgba(23, 23, 26, 0) 25%, rgba(23, 23, 26, 0) 50%, rgba(23, 23, 26, 0) 75%, rgba(23, 23, 26, 0.88) 89.28%, rgba(23, 23, 26, 1) 100%); + } + &-list { + position:relative; + display: flex; + align-items: center; + gap: pxToRem(32); + } + &-item { + img { border-radius:var(--border-radius-medium); transition:var(--transition); } + } + + @media #{$break1} {} + @media #{$break2open} { + &-item { + img { min-inline-size:pxToRem(472); } + &.is-main { + img { min-inline-size:pxToRem(584); } + } + } + } +} diff --git a/src/scss/7-components/_index.scss b/src/scss/7-components/_index.scss index 045c5729a6..f574019ce7 100644 --- a/src/scss/7-components/_index.scss +++ b/src/scss/7-components/_index.scss @@ -25,6 +25,7 @@ @forward "timeline-content"; @forward "investor-cards"; @forward "chat"; +@forward "carousel"; /*article content */ @forward "article";