├── .gitignore ├── README.md ├── adaptive-cards-gradient-animation-dark ├── index.html ├── script.js └── style.css ├── adaptive-cards-oklch ├── index.html └── style.css ├── adaptive-cards-with-(text-wrap-balance) ├── index.html └── style.css ├── adaptive-links-with-(text-wrap-balance) ├── index.html └── style.css ├── ai-hero-chat-popover ├── assets │ ├── bg-gradient.jpg │ ├── img-1.jpg │ ├── img-2.jpg │ ├── img-3.jpg │ ├── img-4.jpg │ └── logo.png ├── index.html └── style.css ├── assets ├── carousel-img │ ├── img-01.webp │ ├── img-02.webp │ ├── img-03.webp │ ├── img-04.webp │ ├── img-05.webp │ ├── img-06.webp │ └── profile.png └── logo │ ├── op-logo-b-w-t.svg │ ├── op-logo-i-b.svg │ ├── op-logo-i-g.svg │ ├── op-logo-i-w.svg │ └── op-logo-w-w-t.svg ├── beat-reactor ├── assets │ ├── hero-img.jpg │ └── lost-in-shadows.mp3 ├── index.html ├── script.js └── style.css ├── bento-grid ├── images │ ├── cockatoo.avif │ ├── cockatoo.webp │ ├── cow.avif │ ├── cow.webp │ ├── crocodile.avif │ ├── crocodile.webp │ ├── dog.avif │ ├── dog.webp │ ├── elephant.avif │ ├── elephant.webp │ ├── fox.avif │ ├── fox.webp │ ├── horse.avif │ ├── horse.webp │ ├── macaw.avif │ ├── macaw.webp │ ├── snake.avif │ ├── snake.webp │ ├── starfish.avif │ ├── starfish.webp │ ├── tiger.avif │ └── tiger.webp ├── index.html ├── script.js └── style.css ├── carousel-with-scroll-driven-animations ├── index.html ├── script.js └── style.css ├── cyber-glitch-effect ├── images │ ├── hero.avif │ └── hero.webp ├── index.html └── style.css ├── dropdown-menu ├── images │ ├── img-1-desktop.avif │ ├── img-1-desktop.webp │ ├── img-1-mobile.avif │ ├── img-1-mobile.webp │ ├── img-2-desktop.avif │ ├── img-2-desktop.webp │ ├── img-2-mobile.avif │ ├── img-2-mobile.webp │ ├── img-3-desktop.avif │ ├── img-3-desktop.webp │ ├── img-3-mobile.avif │ ├── img-3-mobile.webp │ ├── img-4-desktop.avif │ ├── img-4-desktop.webp │ ├── img-4-mobile.avif │ ├── img-4-mobile.webp │ ├── img-5-desktop.avif │ ├── img-5-desktop.webp │ ├── img-5-mobile.avif │ └── img-5-mobile.webp ├── index.html └── style.css ├── dynamic-content-lockups-v2 ├── assets │ ├── bg-gradient-animation.mp4 │ ├── img-1.avif │ ├── img-2.avif │ ├── img-3.avif │ └── img-4.avif ├── index.html └── style.css ├── flicker-text-replace ├── index.html ├── logo.png ├── script.js └── style.css ├── gradient-adaptive-ghost-button ├── index.html └── style.css ├── gradient-underlines-(text-decoration) ├── index.html └── style.css ├── halloween-rank-pairs ├── images │ ├── img-1.webp │ ├── img-10.webp │ ├── img-11.webp │ ├── img-12.webp │ ├── img-13.webp │ ├── img-14.webp │ ├── img-2.webp │ ├── img-3.webp │ ├── img-4.webp │ ├── img-5.webp │ ├── img-6.webp │ ├── img-7.webp │ ├── img-8.webp │ └── img-9.webp ├── index.html ├── script.js └── style.css ├── hdr-palettes-astro-op ├── .gitignore ├── README.md ├── astro.config.mjs ├── package-lock.json ├── package.json ├── postcss.config.cjs ├── public │ └── favicon.svg ├── src │ ├── assets │ │ ├── fonts │ │ │ └── material-symbols-outlined.woff2 │ │ └── images │ │ │ ├── hero.avif │ │ │ ├── img-1.avif │ │ │ ├── img-2.avif │ │ │ ├── img-3.avif │ │ │ ├── img-4.avif │ │ │ ├── img-5.avif │ │ │ └── img-6.avif │ ├── layouts │ │ └── Layout.astro │ ├── pages │ │ └── index.astro │ └── styles │ │ ├── app.css │ │ ├── global-tokens.css │ │ └── hdr-palettes.css └── tsconfig.json ├── hero-color-mix ├── index.html └── style.css ├── hero-in-monochrome ├── images │ └── hero-img.avif ├── index.html └── styles.css ├── hero-section-gradient.style ├── img │ └── palm.png ├── index.html └── style.css ├── hero-section-with-variable-font-animation ├── index.html ├── script.js └── style.css ├── hero-sticky-slides ├── images │ ├── img-1-desktop.avif │ ├── img-1-desktop.webp │ ├── img-1-mobile.avif │ ├── img-1-mobile.webp │ ├── img-2-desktop.avif │ ├── img-2-desktop.webp │ ├── img-2-mobile.avif │ ├── img-2-mobile.webp │ ├── img-3-desktop.avif │ ├── img-3-desktop.webp │ ├── img-3-mobile.avif │ └── img-3-mobile.webp ├── index.html └── style.css ├── hero-view-transitions ├── index.html ├── script.js └── style.css ├── image-gallery ├── images │ ├── bars-rotate-fade.svg │ ├── img-1.webp │ ├── img-10.webp │ ├── img-11.webp │ ├── img-12.webp │ ├── img-2.webp │ ├── img-3.webp │ ├── img-4.webp │ ├── img-5.webp │ ├── img-6.webp │ ├── img-7.webp │ ├── img-8.webp │ ├── img-9.webp │ └── pushpin-fill.svg ├── index.html ├── script.js └── style.css ├── infinite-scroll-animation ├── index.html ├── script.js └── style.css ├── keyframe-interpolation-(text-animation) ├── index.html └── style.css ├── landing-page-with-scroll-driven ├── assets │ ├── demo-mobile.mp4 │ ├── demo.mp4 │ └── images │ │ ├── hero-mobile.avif │ │ ├── hero-mobile.webp │ │ ├── hero.avif │ │ ├── hero.webp │ │ ├── main-visual.jpg │ │ ├── poster.webp │ │ └── rhythm.png ├── index.html ├── script.js └── style.css ├── language-switch ├── .gitignore ├── index.html ├── main.js ├── package-lock.json ├── package.json ├── postcss.config.cjs ├── public │ ├── img │ │ ├── ain-dubai.jpg │ │ ├── aquaventure-waterpark.jpg │ │ ├── burj-al-arab.jpg │ │ ├── burj-khalifa.jpg │ │ ├── dubai-frame.jpg │ │ ├── dubai-mall.jpg │ │ ├── dubai-miracle-garden.jpg │ │ ├── img-worlds-of-adventure.jpg │ │ ├── motiongate-dubai.jpg │ │ ├── ski-dubai.jpg │ │ ├── the-dubai-fountain.jpg │ │ └── the-lost-chambers.jpg │ ├── lang-toggle.js │ └── vite.svg ├── src │ ├── ar.json │ └── en.json └── style.css ├── logical-carousel ├── images │ ├── img-1.avif │ ├── img-1.webp │ ├── img-2.avif │ ├── img-2.webp │ ├── img-3.avif │ ├── img-3.webp │ ├── img-4.avif │ ├── img-4.webp │ ├── img-5.avif │ ├── img-5.webp │ ├── img-6.avif │ └── img-6.webp ├── index.html ├── script.js └── style.css ├── marketing-hero-section ├── assets │ ├── logo.svg │ ├── poster.avif │ ├── video-1.mp4 │ ├── video-2.mp4 │ └── video-3.mp4 ├── index.html └── style.css ├── menu-animation-with-view-transition-api ├── index.html ├── script.js └── style.css ├── multi-layer-gradient-hue-interpolation+view-transitions ├── index.html ├── script.js └── style.css ├── op-next-store ├── .eslintrc.json ├── .gitignore ├── README.md ├── app │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ ├── page.module.css │ ├── page.tsx │ └── product │ │ └── [handle] │ │ ├── page.module.css │ │ └── page.tsx ├── components │ ├── Search │ │ ├── Search.module.css │ │ └── Search.tsx │ └── layout │ │ ├── Footer │ │ ├── Footer.module.css │ │ └── Footer.tsx │ │ ├── Navbar │ │ ├── Navbar.module.css │ │ └── Navbar.tsx │ │ └── ProductGridItems │ │ ├── ProductGridItems.module.css │ │ └── ProductGridItems.tsx ├── next.config.js ├── package-lock.json ├── package.json ├── postcss.config.json ├── products.json ├── public │ └── images │ │ ├── cancel-search.svg │ │ ├── img-1.avif │ │ ├── img-1.jpg │ │ ├── img-1.webp │ │ ├── img-10.avif │ │ ├── img-10.jpg │ │ ├── img-10.webp │ │ ├── img-11.avif │ │ ├── img-11.jpg │ │ ├── img-11.webp │ │ ├── img-12.avif │ │ ├── img-12.jpg │ │ ├── img-12.webp │ │ ├── img-13.avif │ │ ├── img-13.jpg │ │ ├── img-13.webp │ │ ├── img-14.avif │ │ ├── img-14.jpg │ │ ├── img-14.webp │ │ ├── img-15.avif │ │ ├── img-15.jpg │ │ ├── img-15.webp │ │ ├── img-16.avif │ │ ├── img-16.jpg │ │ ├── img-16.webp │ │ ├── img-17.avif │ │ ├── img-17.jpg │ │ ├── img-17.webp │ │ ├── img-18.avif │ │ ├── img-18.jpg │ │ ├── img-18.webp │ │ ├── img-19.avif │ │ ├── img-19.jpg │ │ ├── img-19.webp │ │ ├── img-2.avif │ │ ├── img-2.jpg │ │ ├── img-2.webp │ │ ├── img-20.avif │ │ ├── img-20.jpg │ │ ├── img-20.webp │ │ ├── img-21.avif │ │ ├── img-21.jpg │ │ ├── img-21.webp │ │ ├── img-22.avif │ │ ├── img-22.jpg │ │ ├── img-22.webp │ │ ├── img-23.avif │ │ ├── img-23.jpg │ │ ├── img-23.webp │ │ ├── img-24.avif │ │ ├── img-24.jpg │ │ ├── img-24.webp │ │ ├── img-25.avif │ │ ├── img-25.jpg │ │ ├── img-25.webp │ │ ├── img-26.avif │ │ ├── img-26.jpg │ │ ├── img-26.webp │ │ ├── img-27.avif │ │ ├── img-27.jpg │ │ ├── img-27.webp │ │ ├── img-28.avif │ │ ├── img-28.jpg │ │ ├── img-28.webp │ │ ├── img-29.avif │ │ ├── img-29.jpg │ │ ├── img-29.webp │ │ ├── img-3.avif │ │ ├── img-3.jpg │ │ ├── img-3.webp │ │ ├── img-30.avif │ │ ├── img-30.jpg │ │ ├── img-30.webp │ │ ├── img-31.avif │ │ ├── img-31.jpg │ │ ├── img-31.webp │ │ ├── img-32.avif │ │ ├── img-32.jpg │ │ ├── img-32.webp │ │ ├── img-33.avif │ │ ├── img-33.jpg │ │ ├── img-33.webp │ │ ├── img-34.avif │ │ ├── img-34.jpg │ │ ├── img-34.webp │ │ ├── img-35.avif │ │ ├── img-35.jpg │ │ ├── img-35.webp │ │ ├── img-36.avif │ │ ├── img-36.jpg │ │ ├── img-36.webp │ │ ├── img-37.avif │ │ ├── img-37.jpg │ │ ├── img-37.webp │ │ ├── img-38.avif │ │ ├── img-38.jpg │ │ ├── img-38.webp │ │ ├── img-4.avif │ │ ├── img-4.jpg │ │ ├── img-4.webp │ │ ├── img-5.avif │ │ ├── img-5.jpg │ │ ├── img-5.webp │ │ ├── img-6.avif │ │ ├── img-6.jpg │ │ ├── img-6.webp │ │ ├── img-7.avif │ │ ├── img-7.jpg │ │ ├── img-7.webp │ │ ├── img-8.avif │ │ ├── img-8.jpg │ │ ├── img-8.webp │ │ ├── img-9.avif │ │ ├── img-9.jpg │ │ ├── img-9.webp │ │ └── next-store-logo.svg ├── styles │ └── custom-media-queries.css ├── tsconfig.json └── utils │ └── interfaces.tsx ├── open-props-v2-adaptive-cards ├── images │ ├── img-1.avif │ ├── img-2.avif │ └── img-3.avif ├── index.html └── style.css ├── openprops-meets-container-queries ├── assets │ ├── arrow.svg │ └── logo-animation.svg ├── index.html └── style.css ├── product-details ├── images │ ├── img-1.avif │ ├── img-1.webp │ ├── img-2.avif │ └── img-2.webp ├── index.html ├── style.css └── utilities.css ├── recommendation-carousel ├── images │ ├── img-1.avif │ ├── img-1.webp │ ├── img-10.avif │ ├── img-10.webp │ ├── img-11.avif │ ├── img-11.webp │ ├── img-12.avif │ ├── img-12.webp │ ├── img-2.avif │ ├── img-2.webp │ ├── img-3.avif │ ├── img-3.webp │ ├── img-4.avif │ ├── img-4.webp │ ├── img-5.avif │ ├── img-5.webp │ ├── img-6.avif │ ├── img-6.webp │ ├── img-7.avif │ ├── img-7.webp │ ├── img-8.avif │ ├── img-8.webp │ ├── img-9.avif │ └── img-9.webp ├── index.html └── style.css ├── scaling-with-golden-ratio ├── assets │ ├── icons │ │ ├── adoptable.png │ │ ├── consistenly.png │ │ ├── customizable.png │ │ └── predictable.png │ ├── images │ │ ├── img-1.avif │ │ ├── img-1.webp │ │ ├── img-10.avif │ │ ├── img-10.webp │ │ ├── img-11.avif │ │ ├── img-11.webp │ │ ├── img-12.avif │ │ ├── img-12.webp │ │ ├── img-2.avif │ │ ├── img-2.webp │ │ ├── img-3.avif │ │ ├── img-3.webp │ │ ├── img-4.avif │ │ ├── img-4.webp │ │ ├── img-5.avif │ │ ├── img-5.webp │ │ ├── img-6.avif │ │ ├── img-6.webp │ │ ├── img-7.avif │ │ ├── img-7.webp │ │ ├── img-8.avif │ │ ├── img-8.webp │ │ ├── img-9.avif │ │ ├── img-9.webp │ │ ├── img-next.avif │ │ └── img-next.webp │ ├── logo.svg │ └── noise.png ├── index.html └── style.css ├── services-section ├── images │ ├── img-1.avif │ ├── img-2.avif │ ├── img-3.avif │ └── main-img.avif ├── index.html └── style.css ├── sidenav-with-view-transition-api ├── index.html ├── script.js └── style.css ├── sign-in-open-props ├── assets │ ├── bg.webp │ ├── logo.svg │ └── user.svg ├── index.html └── style.css ├── slider-scroll-snap-events ├── images │ ├── img-1.avif │ ├── img-2.avif │ ├── img-3.avif │ └── img-4.avif ├── index.html ├── script.js └── style.css ├── sticky-slider-cta-cards ├── assets │ ├── img-1.avif │ ├── img-2.avif │ └── img-3.avif ├── index.html └── style.css ├── stories-with-scroll-driven ├── images │ ├── img-desktop-1.avif │ ├── img-desktop-1.webp │ ├── img-desktop-2.avif │ ├── img-desktop-2.webp │ ├── img-desktop-3.avif │ ├── img-desktop-3.webp │ ├── img-mobile-1.avif │ ├── img-mobile-1.webp │ ├── img-mobile-2.avif │ ├── img-mobile-2.webp │ ├── img-mobile-3.avif │ └── img-mobile-3.webp ├── index.html └── style.css ├── tabbed-interface ├── assets │ ├── gif-4.gif │ ├── img-1.avif │ ├── img-2.avif │ └── img-3.avif ├── index.html └── style.css ├── theme-switch-component-with-normalize ├── index.html ├── style.css └── theme-toggle.js ├── view-transitions-dialog ├── index.html ├── script.js └── style.css └── visual-balance-with-relative-sizes ├── index.html └── style.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/README.md -------------------------------------------------------------------------------- /adaptive-cards-gradient-animation-dark/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/adaptive-cards-gradient-animation-dark/index.html -------------------------------------------------------------------------------- /adaptive-cards-gradient-animation-dark/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/adaptive-cards-gradient-animation-dark/script.js -------------------------------------------------------------------------------- /adaptive-cards-gradient-animation-dark/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/adaptive-cards-gradient-animation-dark/style.css -------------------------------------------------------------------------------- /adaptive-cards-oklch/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/adaptive-cards-oklch/index.html -------------------------------------------------------------------------------- /adaptive-cards-oklch/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/adaptive-cards-oklch/style.css -------------------------------------------------------------------------------- /adaptive-cards-with-(text-wrap-balance)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/adaptive-cards-with-(text-wrap-balance)/index.html -------------------------------------------------------------------------------- /adaptive-cards-with-(text-wrap-balance)/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/adaptive-cards-with-(text-wrap-balance)/style.css -------------------------------------------------------------------------------- /adaptive-links-with-(text-wrap-balance)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/adaptive-links-with-(text-wrap-balance)/index.html -------------------------------------------------------------------------------- /adaptive-links-with-(text-wrap-balance)/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/adaptive-links-with-(text-wrap-balance)/style.css -------------------------------------------------------------------------------- /ai-hero-chat-popover/assets/bg-gradient.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/ai-hero-chat-popover/assets/bg-gradient.jpg -------------------------------------------------------------------------------- /ai-hero-chat-popover/assets/img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/ai-hero-chat-popover/assets/img-1.jpg -------------------------------------------------------------------------------- /ai-hero-chat-popover/assets/img-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/ai-hero-chat-popover/assets/img-2.jpg -------------------------------------------------------------------------------- /ai-hero-chat-popover/assets/img-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/ai-hero-chat-popover/assets/img-3.jpg -------------------------------------------------------------------------------- /ai-hero-chat-popover/assets/img-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/ai-hero-chat-popover/assets/img-4.jpg -------------------------------------------------------------------------------- /ai-hero-chat-popover/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/ai-hero-chat-popover/assets/logo.png -------------------------------------------------------------------------------- /ai-hero-chat-popover/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/ai-hero-chat-popover/index.html -------------------------------------------------------------------------------- /ai-hero-chat-popover/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/ai-hero-chat-popover/style.css -------------------------------------------------------------------------------- /assets/carousel-img/img-01.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/assets/carousel-img/img-01.webp -------------------------------------------------------------------------------- /assets/carousel-img/img-02.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/assets/carousel-img/img-02.webp -------------------------------------------------------------------------------- /assets/carousel-img/img-03.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/assets/carousel-img/img-03.webp -------------------------------------------------------------------------------- /assets/carousel-img/img-04.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/assets/carousel-img/img-04.webp -------------------------------------------------------------------------------- /assets/carousel-img/img-05.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/assets/carousel-img/img-05.webp -------------------------------------------------------------------------------- /assets/carousel-img/img-06.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/assets/carousel-img/img-06.webp -------------------------------------------------------------------------------- /assets/carousel-img/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/assets/carousel-img/profile.png -------------------------------------------------------------------------------- /assets/logo/op-logo-b-w-t.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/assets/logo/op-logo-b-w-t.svg -------------------------------------------------------------------------------- /assets/logo/op-logo-i-b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/assets/logo/op-logo-i-b.svg -------------------------------------------------------------------------------- /assets/logo/op-logo-i-g.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/assets/logo/op-logo-i-g.svg -------------------------------------------------------------------------------- /assets/logo/op-logo-i-w.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/assets/logo/op-logo-i-w.svg -------------------------------------------------------------------------------- /assets/logo/op-logo-w-w-t.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/assets/logo/op-logo-w-w-t.svg -------------------------------------------------------------------------------- /beat-reactor/assets/hero-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/beat-reactor/assets/hero-img.jpg -------------------------------------------------------------------------------- /beat-reactor/assets/lost-in-shadows.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/beat-reactor/assets/lost-in-shadows.mp3 -------------------------------------------------------------------------------- /beat-reactor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/beat-reactor/index.html -------------------------------------------------------------------------------- /beat-reactor/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/beat-reactor/script.js -------------------------------------------------------------------------------- /beat-reactor/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/beat-reactor/style.css -------------------------------------------------------------------------------- /bento-grid/images/cockatoo.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/bento-grid/images/cockatoo.avif -------------------------------------------------------------------------------- /bento-grid/images/cockatoo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/bento-grid/images/cockatoo.webp -------------------------------------------------------------------------------- /bento-grid/images/cow.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/bento-grid/images/cow.avif -------------------------------------------------------------------------------- /bento-grid/images/cow.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/bento-grid/images/cow.webp -------------------------------------------------------------------------------- /bento-grid/images/crocodile.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/bento-grid/images/crocodile.avif -------------------------------------------------------------------------------- /bento-grid/images/crocodile.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/bento-grid/images/crocodile.webp -------------------------------------------------------------------------------- /bento-grid/images/dog.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/bento-grid/images/dog.avif -------------------------------------------------------------------------------- /bento-grid/images/dog.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/bento-grid/images/dog.webp -------------------------------------------------------------------------------- /bento-grid/images/elephant.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/bento-grid/images/elephant.avif -------------------------------------------------------------------------------- /bento-grid/images/elephant.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/bento-grid/images/elephant.webp -------------------------------------------------------------------------------- /bento-grid/images/fox.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/bento-grid/images/fox.avif -------------------------------------------------------------------------------- /bento-grid/images/fox.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/bento-grid/images/fox.webp -------------------------------------------------------------------------------- /bento-grid/images/horse.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/bento-grid/images/horse.avif -------------------------------------------------------------------------------- /bento-grid/images/horse.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/bento-grid/images/horse.webp -------------------------------------------------------------------------------- /bento-grid/images/macaw.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/bento-grid/images/macaw.avif -------------------------------------------------------------------------------- /bento-grid/images/macaw.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/bento-grid/images/macaw.webp -------------------------------------------------------------------------------- /bento-grid/images/snake.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/bento-grid/images/snake.avif -------------------------------------------------------------------------------- /bento-grid/images/snake.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/bento-grid/images/snake.webp -------------------------------------------------------------------------------- /bento-grid/images/starfish.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/bento-grid/images/starfish.avif -------------------------------------------------------------------------------- /bento-grid/images/starfish.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/bento-grid/images/starfish.webp -------------------------------------------------------------------------------- /bento-grid/images/tiger.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/bento-grid/images/tiger.avif -------------------------------------------------------------------------------- /bento-grid/images/tiger.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/bento-grid/images/tiger.webp -------------------------------------------------------------------------------- /bento-grid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/bento-grid/index.html -------------------------------------------------------------------------------- /bento-grid/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/bento-grid/script.js -------------------------------------------------------------------------------- /bento-grid/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/bento-grid/style.css -------------------------------------------------------------------------------- /carousel-with-scroll-driven-animations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/carousel-with-scroll-driven-animations/index.html -------------------------------------------------------------------------------- /carousel-with-scroll-driven-animations/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/carousel-with-scroll-driven-animations/script.js -------------------------------------------------------------------------------- /carousel-with-scroll-driven-animations/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/carousel-with-scroll-driven-animations/style.css -------------------------------------------------------------------------------- /cyber-glitch-effect/images/hero.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/cyber-glitch-effect/images/hero.avif -------------------------------------------------------------------------------- /cyber-glitch-effect/images/hero.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/cyber-glitch-effect/images/hero.webp -------------------------------------------------------------------------------- /cyber-glitch-effect/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/cyber-glitch-effect/index.html -------------------------------------------------------------------------------- /cyber-glitch-effect/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/cyber-glitch-effect/style.css -------------------------------------------------------------------------------- /dropdown-menu/images/img-1-desktop.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/dropdown-menu/images/img-1-desktop.avif -------------------------------------------------------------------------------- /dropdown-menu/images/img-1-desktop.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/dropdown-menu/images/img-1-desktop.webp -------------------------------------------------------------------------------- /dropdown-menu/images/img-1-mobile.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/dropdown-menu/images/img-1-mobile.avif -------------------------------------------------------------------------------- /dropdown-menu/images/img-1-mobile.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/dropdown-menu/images/img-1-mobile.webp -------------------------------------------------------------------------------- /dropdown-menu/images/img-2-desktop.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/dropdown-menu/images/img-2-desktop.avif -------------------------------------------------------------------------------- /dropdown-menu/images/img-2-desktop.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/dropdown-menu/images/img-2-desktop.webp -------------------------------------------------------------------------------- /dropdown-menu/images/img-2-mobile.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/dropdown-menu/images/img-2-mobile.avif -------------------------------------------------------------------------------- /dropdown-menu/images/img-2-mobile.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/dropdown-menu/images/img-2-mobile.webp -------------------------------------------------------------------------------- /dropdown-menu/images/img-3-desktop.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/dropdown-menu/images/img-3-desktop.avif -------------------------------------------------------------------------------- /dropdown-menu/images/img-3-desktop.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/dropdown-menu/images/img-3-desktop.webp -------------------------------------------------------------------------------- /dropdown-menu/images/img-3-mobile.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/dropdown-menu/images/img-3-mobile.avif -------------------------------------------------------------------------------- /dropdown-menu/images/img-3-mobile.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/dropdown-menu/images/img-3-mobile.webp -------------------------------------------------------------------------------- /dropdown-menu/images/img-4-desktop.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/dropdown-menu/images/img-4-desktop.avif -------------------------------------------------------------------------------- /dropdown-menu/images/img-4-desktop.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/dropdown-menu/images/img-4-desktop.webp -------------------------------------------------------------------------------- /dropdown-menu/images/img-4-mobile.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/dropdown-menu/images/img-4-mobile.avif -------------------------------------------------------------------------------- /dropdown-menu/images/img-4-mobile.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/dropdown-menu/images/img-4-mobile.webp -------------------------------------------------------------------------------- /dropdown-menu/images/img-5-desktop.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/dropdown-menu/images/img-5-desktop.avif -------------------------------------------------------------------------------- /dropdown-menu/images/img-5-desktop.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/dropdown-menu/images/img-5-desktop.webp -------------------------------------------------------------------------------- /dropdown-menu/images/img-5-mobile.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/dropdown-menu/images/img-5-mobile.avif -------------------------------------------------------------------------------- /dropdown-menu/images/img-5-mobile.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/dropdown-menu/images/img-5-mobile.webp -------------------------------------------------------------------------------- /dropdown-menu/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/dropdown-menu/index.html -------------------------------------------------------------------------------- /dropdown-menu/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/dropdown-menu/style.css -------------------------------------------------------------------------------- /dynamic-content-lockups-v2/assets/bg-gradient-animation.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/dynamic-content-lockups-v2/assets/bg-gradient-animation.mp4 -------------------------------------------------------------------------------- /dynamic-content-lockups-v2/assets/img-1.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/dynamic-content-lockups-v2/assets/img-1.avif -------------------------------------------------------------------------------- /dynamic-content-lockups-v2/assets/img-2.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/dynamic-content-lockups-v2/assets/img-2.avif -------------------------------------------------------------------------------- /dynamic-content-lockups-v2/assets/img-3.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/dynamic-content-lockups-v2/assets/img-3.avif -------------------------------------------------------------------------------- /dynamic-content-lockups-v2/assets/img-4.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/dynamic-content-lockups-v2/assets/img-4.avif -------------------------------------------------------------------------------- /dynamic-content-lockups-v2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/dynamic-content-lockups-v2/index.html -------------------------------------------------------------------------------- /dynamic-content-lockups-v2/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/dynamic-content-lockups-v2/style.css -------------------------------------------------------------------------------- /flicker-text-replace/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/flicker-text-replace/index.html -------------------------------------------------------------------------------- /flicker-text-replace/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/flicker-text-replace/logo.png -------------------------------------------------------------------------------- /flicker-text-replace/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/flicker-text-replace/script.js -------------------------------------------------------------------------------- /flicker-text-replace/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/flicker-text-replace/style.css -------------------------------------------------------------------------------- /gradient-adaptive-ghost-button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/gradient-adaptive-ghost-button/index.html -------------------------------------------------------------------------------- /gradient-adaptive-ghost-button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/gradient-adaptive-ghost-button/style.css -------------------------------------------------------------------------------- /gradient-underlines-(text-decoration)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/gradient-underlines-(text-decoration)/index.html -------------------------------------------------------------------------------- /gradient-underlines-(text-decoration)/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/gradient-underlines-(text-decoration)/style.css -------------------------------------------------------------------------------- /halloween-rank-pairs/images/img-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/halloween-rank-pairs/images/img-1.webp -------------------------------------------------------------------------------- /halloween-rank-pairs/images/img-10.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/halloween-rank-pairs/images/img-10.webp -------------------------------------------------------------------------------- /halloween-rank-pairs/images/img-11.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/halloween-rank-pairs/images/img-11.webp -------------------------------------------------------------------------------- /halloween-rank-pairs/images/img-12.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/halloween-rank-pairs/images/img-12.webp -------------------------------------------------------------------------------- /halloween-rank-pairs/images/img-13.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/halloween-rank-pairs/images/img-13.webp -------------------------------------------------------------------------------- /halloween-rank-pairs/images/img-14.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/halloween-rank-pairs/images/img-14.webp -------------------------------------------------------------------------------- /halloween-rank-pairs/images/img-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/halloween-rank-pairs/images/img-2.webp -------------------------------------------------------------------------------- /halloween-rank-pairs/images/img-3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/halloween-rank-pairs/images/img-3.webp -------------------------------------------------------------------------------- /halloween-rank-pairs/images/img-4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/halloween-rank-pairs/images/img-4.webp -------------------------------------------------------------------------------- /halloween-rank-pairs/images/img-5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/halloween-rank-pairs/images/img-5.webp -------------------------------------------------------------------------------- /halloween-rank-pairs/images/img-6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/halloween-rank-pairs/images/img-6.webp -------------------------------------------------------------------------------- /halloween-rank-pairs/images/img-7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/halloween-rank-pairs/images/img-7.webp -------------------------------------------------------------------------------- /halloween-rank-pairs/images/img-8.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/halloween-rank-pairs/images/img-8.webp -------------------------------------------------------------------------------- /halloween-rank-pairs/images/img-9.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/halloween-rank-pairs/images/img-9.webp -------------------------------------------------------------------------------- /halloween-rank-pairs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/halloween-rank-pairs/index.html -------------------------------------------------------------------------------- /halloween-rank-pairs/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/halloween-rank-pairs/script.js -------------------------------------------------------------------------------- /halloween-rank-pairs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/halloween-rank-pairs/style.css -------------------------------------------------------------------------------- /hdr-palettes-astro-op/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hdr-palettes-astro-op/.gitignore -------------------------------------------------------------------------------- /hdr-palettes-astro-op/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hdr-palettes-astro-op/README.md -------------------------------------------------------------------------------- /hdr-palettes-astro-op/astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hdr-palettes-astro-op/astro.config.mjs -------------------------------------------------------------------------------- /hdr-palettes-astro-op/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hdr-palettes-astro-op/package-lock.json -------------------------------------------------------------------------------- /hdr-palettes-astro-op/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hdr-palettes-astro-op/package.json -------------------------------------------------------------------------------- /hdr-palettes-astro-op/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hdr-palettes-astro-op/postcss.config.cjs -------------------------------------------------------------------------------- /hdr-palettes-astro-op/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hdr-palettes-astro-op/public/favicon.svg -------------------------------------------------------------------------------- /hdr-palettes-astro-op/src/assets/fonts/material-symbols-outlined.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hdr-palettes-astro-op/src/assets/fonts/material-symbols-outlined.woff2 -------------------------------------------------------------------------------- /hdr-palettes-astro-op/src/assets/images/hero.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hdr-palettes-astro-op/src/assets/images/hero.avif -------------------------------------------------------------------------------- /hdr-palettes-astro-op/src/assets/images/img-1.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hdr-palettes-astro-op/src/assets/images/img-1.avif -------------------------------------------------------------------------------- /hdr-palettes-astro-op/src/assets/images/img-2.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hdr-palettes-astro-op/src/assets/images/img-2.avif -------------------------------------------------------------------------------- /hdr-palettes-astro-op/src/assets/images/img-3.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hdr-palettes-astro-op/src/assets/images/img-3.avif -------------------------------------------------------------------------------- /hdr-palettes-astro-op/src/assets/images/img-4.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hdr-palettes-astro-op/src/assets/images/img-4.avif -------------------------------------------------------------------------------- /hdr-palettes-astro-op/src/assets/images/img-5.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hdr-palettes-astro-op/src/assets/images/img-5.avif -------------------------------------------------------------------------------- /hdr-palettes-astro-op/src/assets/images/img-6.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hdr-palettes-astro-op/src/assets/images/img-6.avif -------------------------------------------------------------------------------- /hdr-palettes-astro-op/src/layouts/Layout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hdr-palettes-astro-op/src/layouts/Layout.astro -------------------------------------------------------------------------------- /hdr-palettes-astro-op/src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hdr-palettes-astro-op/src/pages/index.astro -------------------------------------------------------------------------------- /hdr-palettes-astro-op/src/styles/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hdr-palettes-astro-op/src/styles/app.css -------------------------------------------------------------------------------- /hdr-palettes-astro-op/src/styles/global-tokens.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hdr-palettes-astro-op/src/styles/global-tokens.css -------------------------------------------------------------------------------- /hdr-palettes-astro-op/src/styles/hdr-palettes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hdr-palettes-astro-op/src/styles/hdr-palettes.css -------------------------------------------------------------------------------- /hdr-palettes-astro-op/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hdr-palettes-astro-op/tsconfig.json -------------------------------------------------------------------------------- /hero-color-mix/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hero-color-mix/index.html -------------------------------------------------------------------------------- /hero-color-mix/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hero-color-mix/style.css -------------------------------------------------------------------------------- /hero-in-monochrome/images/hero-img.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hero-in-monochrome/images/hero-img.avif -------------------------------------------------------------------------------- /hero-in-monochrome/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hero-in-monochrome/index.html -------------------------------------------------------------------------------- /hero-in-monochrome/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hero-in-monochrome/styles.css -------------------------------------------------------------------------------- /hero-section-gradient.style/img/palm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hero-section-gradient.style/img/palm.png -------------------------------------------------------------------------------- /hero-section-gradient.style/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hero-section-gradient.style/index.html -------------------------------------------------------------------------------- /hero-section-gradient.style/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hero-section-gradient.style/style.css -------------------------------------------------------------------------------- /hero-section-with-variable-font-animation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hero-section-with-variable-font-animation/index.html -------------------------------------------------------------------------------- /hero-section-with-variable-font-animation/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hero-section-with-variable-font-animation/script.js -------------------------------------------------------------------------------- /hero-section-with-variable-font-animation/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hero-section-with-variable-font-animation/style.css -------------------------------------------------------------------------------- /hero-sticky-slides/images/img-1-desktop.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hero-sticky-slides/images/img-1-desktop.avif -------------------------------------------------------------------------------- /hero-sticky-slides/images/img-1-desktop.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hero-sticky-slides/images/img-1-desktop.webp -------------------------------------------------------------------------------- /hero-sticky-slides/images/img-1-mobile.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hero-sticky-slides/images/img-1-mobile.avif -------------------------------------------------------------------------------- /hero-sticky-slides/images/img-1-mobile.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hero-sticky-slides/images/img-1-mobile.webp -------------------------------------------------------------------------------- /hero-sticky-slides/images/img-2-desktop.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hero-sticky-slides/images/img-2-desktop.avif -------------------------------------------------------------------------------- /hero-sticky-slides/images/img-2-desktop.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hero-sticky-slides/images/img-2-desktop.webp -------------------------------------------------------------------------------- /hero-sticky-slides/images/img-2-mobile.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hero-sticky-slides/images/img-2-mobile.avif -------------------------------------------------------------------------------- /hero-sticky-slides/images/img-2-mobile.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hero-sticky-slides/images/img-2-mobile.webp -------------------------------------------------------------------------------- /hero-sticky-slides/images/img-3-desktop.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hero-sticky-slides/images/img-3-desktop.avif -------------------------------------------------------------------------------- /hero-sticky-slides/images/img-3-desktop.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hero-sticky-slides/images/img-3-desktop.webp -------------------------------------------------------------------------------- /hero-sticky-slides/images/img-3-mobile.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hero-sticky-slides/images/img-3-mobile.avif -------------------------------------------------------------------------------- /hero-sticky-slides/images/img-3-mobile.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hero-sticky-slides/images/img-3-mobile.webp -------------------------------------------------------------------------------- /hero-sticky-slides/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hero-sticky-slides/index.html -------------------------------------------------------------------------------- /hero-sticky-slides/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hero-sticky-slides/style.css -------------------------------------------------------------------------------- /hero-view-transitions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hero-view-transitions/index.html -------------------------------------------------------------------------------- /hero-view-transitions/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hero-view-transitions/script.js -------------------------------------------------------------------------------- /hero-view-transitions/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/hero-view-transitions/style.css -------------------------------------------------------------------------------- /image-gallery/images/bars-rotate-fade.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/image-gallery/images/bars-rotate-fade.svg -------------------------------------------------------------------------------- /image-gallery/images/img-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/image-gallery/images/img-1.webp -------------------------------------------------------------------------------- /image-gallery/images/img-10.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/image-gallery/images/img-10.webp -------------------------------------------------------------------------------- /image-gallery/images/img-11.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/image-gallery/images/img-11.webp -------------------------------------------------------------------------------- /image-gallery/images/img-12.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/image-gallery/images/img-12.webp -------------------------------------------------------------------------------- /image-gallery/images/img-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/image-gallery/images/img-2.webp -------------------------------------------------------------------------------- /image-gallery/images/img-3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/image-gallery/images/img-3.webp -------------------------------------------------------------------------------- /image-gallery/images/img-4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/image-gallery/images/img-4.webp -------------------------------------------------------------------------------- /image-gallery/images/img-5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/image-gallery/images/img-5.webp -------------------------------------------------------------------------------- /image-gallery/images/img-6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/image-gallery/images/img-6.webp -------------------------------------------------------------------------------- /image-gallery/images/img-7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/image-gallery/images/img-7.webp -------------------------------------------------------------------------------- /image-gallery/images/img-8.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/image-gallery/images/img-8.webp -------------------------------------------------------------------------------- /image-gallery/images/img-9.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/image-gallery/images/img-9.webp -------------------------------------------------------------------------------- /image-gallery/images/pushpin-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/image-gallery/images/pushpin-fill.svg -------------------------------------------------------------------------------- /image-gallery/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/image-gallery/index.html -------------------------------------------------------------------------------- /image-gallery/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/image-gallery/script.js -------------------------------------------------------------------------------- /image-gallery/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/image-gallery/style.css -------------------------------------------------------------------------------- /infinite-scroll-animation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/infinite-scroll-animation/index.html -------------------------------------------------------------------------------- /infinite-scroll-animation/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/infinite-scroll-animation/script.js -------------------------------------------------------------------------------- /infinite-scroll-animation/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/infinite-scroll-animation/style.css -------------------------------------------------------------------------------- /keyframe-interpolation-(text-animation)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/keyframe-interpolation-(text-animation)/index.html -------------------------------------------------------------------------------- /keyframe-interpolation-(text-animation)/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/keyframe-interpolation-(text-animation)/style.css -------------------------------------------------------------------------------- /landing-page-with-scroll-driven/assets/demo-mobile.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/landing-page-with-scroll-driven/assets/demo-mobile.mp4 -------------------------------------------------------------------------------- /landing-page-with-scroll-driven/assets/demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/landing-page-with-scroll-driven/assets/demo.mp4 -------------------------------------------------------------------------------- /landing-page-with-scroll-driven/assets/images/hero-mobile.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/landing-page-with-scroll-driven/assets/images/hero-mobile.avif -------------------------------------------------------------------------------- /landing-page-with-scroll-driven/assets/images/hero-mobile.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/landing-page-with-scroll-driven/assets/images/hero-mobile.webp -------------------------------------------------------------------------------- /landing-page-with-scroll-driven/assets/images/hero.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/landing-page-with-scroll-driven/assets/images/hero.avif -------------------------------------------------------------------------------- /landing-page-with-scroll-driven/assets/images/hero.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/landing-page-with-scroll-driven/assets/images/hero.webp -------------------------------------------------------------------------------- /landing-page-with-scroll-driven/assets/images/main-visual.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/landing-page-with-scroll-driven/assets/images/main-visual.jpg -------------------------------------------------------------------------------- /landing-page-with-scroll-driven/assets/images/poster.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/landing-page-with-scroll-driven/assets/images/poster.webp -------------------------------------------------------------------------------- /landing-page-with-scroll-driven/assets/images/rhythm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/landing-page-with-scroll-driven/assets/images/rhythm.png -------------------------------------------------------------------------------- /landing-page-with-scroll-driven/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/landing-page-with-scroll-driven/index.html -------------------------------------------------------------------------------- /landing-page-with-scroll-driven/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/landing-page-with-scroll-driven/script.js -------------------------------------------------------------------------------- /landing-page-with-scroll-driven/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/landing-page-with-scroll-driven/style.css -------------------------------------------------------------------------------- /language-switch/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/language-switch/.gitignore -------------------------------------------------------------------------------- /language-switch/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/language-switch/index.html -------------------------------------------------------------------------------- /language-switch/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/language-switch/main.js -------------------------------------------------------------------------------- /language-switch/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/language-switch/package-lock.json -------------------------------------------------------------------------------- /language-switch/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/language-switch/package.json -------------------------------------------------------------------------------- /language-switch/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/language-switch/postcss.config.cjs -------------------------------------------------------------------------------- /language-switch/public/img/ain-dubai.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/language-switch/public/img/ain-dubai.jpg -------------------------------------------------------------------------------- /language-switch/public/img/aquaventure-waterpark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/language-switch/public/img/aquaventure-waterpark.jpg -------------------------------------------------------------------------------- /language-switch/public/img/burj-al-arab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/language-switch/public/img/burj-al-arab.jpg -------------------------------------------------------------------------------- /language-switch/public/img/burj-khalifa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/language-switch/public/img/burj-khalifa.jpg -------------------------------------------------------------------------------- /language-switch/public/img/dubai-frame.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/language-switch/public/img/dubai-frame.jpg -------------------------------------------------------------------------------- /language-switch/public/img/dubai-mall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/language-switch/public/img/dubai-mall.jpg -------------------------------------------------------------------------------- /language-switch/public/img/dubai-miracle-garden.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/language-switch/public/img/dubai-miracle-garden.jpg -------------------------------------------------------------------------------- /language-switch/public/img/img-worlds-of-adventure.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/language-switch/public/img/img-worlds-of-adventure.jpg -------------------------------------------------------------------------------- /language-switch/public/img/motiongate-dubai.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/language-switch/public/img/motiongate-dubai.jpg -------------------------------------------------------------------------------- /language-switch/public/img/ski-dubai.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/language-switch/public/img/ski-dubai.jpg -------------------------------------------------------------------------------- /language-switch/public/img/the-dubai-fountain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/language-switch/public/img/the-dubai-fountain.jpg -------------------------------------------------------------------------------- /language-switch/public/img/the-lost-chambers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/language-switch/public/img/the-lost-chambers.jpg -------------------------------------------------------------------------------- /language-switch/public/lang-toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/language-switch/public/lang-toggle.js -------------------------------------------------------------------------------- /language-switch/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/language-switch/public/vite.svg -------------------------------------------------------------------------------- /language-switch/src/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/language-switch/src/ar.json -------------------------------------------------------------------------------- /language-switch/src/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/language-switch/src/en.json -------------------------------------------------------------------------------- /language-switch/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/language-switch/style.css -------------------------------------------------------------------------------- /logical-carousel/images/img-1.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/logical-carousel/images/img-1.avif -------------------------------------------------------------------------------- /logical-carousel/images/img-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/logical-carousel/images/img-1.webp -------------------------------------------------------------------------------- /logical-carousel/images/img-2.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/logical-carousel/images/img-2.avif -------------------------------------------------------------------------------- /logical-carousel/images/img-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/logical-carousel/images/img-2.webp -------------------------------------------------------------------------------- /logical-carousel/images/img-3.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/logical-carousel/images/img-3.avif -------------------------------------------------------------------------------- /logical-carousel/images/img-3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/logical-carousel/images/img-3.webp -------------------------------------------------------------------------------- /logical-carousel/images/img-4.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/logical-carousel/images/img-4.avif -------------------------------------------------------------------------------- /logical-carousel/images/img-4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/logical-carousel/images/img-4.webp -------------------------------------------------------------------------------- /logical-carousel/images/img-5.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/logical-carousel/images/img-5.avif -------------------------------------------------------------------------------- /logical-carousel/images/img-5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/logical-carousel/images/img-5.webp -------------------------------------------------------------------------------- /logical-carousel/images/img-6.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/logical-carousel/images/img-6.avif -------------------------------------------------------------------------------- /logical-carousel/images/img-6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/logical-carousel/images/img-6.webp -------------------------------------------------------------------------------- /logical-carousel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/logical-carousel/index.html -------------------------------------------------------------------------------- /logical-carousel/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/logical-carousel/script.js -------------------------------------------------------------------------------- /logical-carousel/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/logical-carousel/style.css -------------------------------------------------------------------------------- /marketing-hero-section/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/marketing-hero-section/assets/logo.svg -------------------------------------------------------------------------------- /marketing-hero-section/assets/poster.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/marketing-hero-section/assets/poster.avif -------------------------------------------------------------------------------- /marketing-hero-section/assets/video-1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/marketing-hero-section/assets/video-1.mp4 -------------------------------------------------------------------------------- /marketing-hero-section/assets/video-2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/marketing-hero-section/assets/video-2.mp4 -------------------------------------------------------------------------------- /marketing-hero-section/assets/video-3.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/marketing-hero-section/assets/video-3.mp4 -------------------------------------------------------------------------------- /marketing-hero-section/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/marketing-hero-section/index.html -------------------------------------------------------------------------------- /marketing-hero-section/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/marketing-hero-section/style.css -------------------------------------------------------------------------------- /menu-animation-with-view-transition-api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/menu-animation-with-view-transition-api/index.html -------------------------------------------------------------------------------- /menu-animation-with-view-transition-api/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/menu-animation-with-view-transition-api/script.js -------------------------------------------------------------------------------- /menu-animation-with-view-transition-api/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/menu-animation-with-view-transition-api/style.css -------------------------------------------------------------------------------- /multi-layer-gradient-hue-interpolation+view-transitions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/multi-layer-gradient-hue-interpolation+view-transitions/index.html -------------------------------------------------------------------------------- /multi-layer-gradient-hue-interpolation+view-transitions/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/multi-layer-gradient-hue-interpolation+view-transitions/script.js -------------------------------------------------------------------------------- /multi-layer-gradient-hue-interpolation+view-transitions/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/multi-layer-gradient-hue-interpolation+view-transitions/style.css -------------------------------------------------------------------------------- /op-next-store/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /op-next-store/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/.gitignore -------------------------------------------------------------------------------- /op-next-store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/README.md -------------------------------------------------------------------------------- /op-next-store/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/app/favicon.ico -------------------------------------------------------------------------------- /op-next-store/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/app/globals.css -------------------------------------------------------------------------------- /op-next-store/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/app/layout.tsx -------------------------------------------------------------------------------- /op-next-store/app/page.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/app/page.module.css -------------------------------------------------------------------------------- /op-next-store/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/app/page.tsx -------------------------------------------------------------------------------- /op-next-store/app/product/[handle]/page.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/app/product/[handle]/page.module.css -------------------------------------------------------------------------------- /op-next-store/app/product/[handle]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/app/product/[handle]/page.tsx -------------------------------------------------------------------------------- /op-next-store/components/Search/Search.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/components/Search/Search.module.css -------------------------------------------------------------------------------- /op-next-store/components/Search/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/components/Search/Search.tsx -------------------------------------------------------------------------------- /op-next-store/components/layout/Footer/Footer.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/components/layout/Footer/Footer.module.css -------------------------------------------------------------------------------- /op-next-store/components/layout/Footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/components/layout/Footer/Footer.tsx -------------------------------------------------------------------------------- /op-next-store/components/layout/Navbar/Navbar.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/components/layout/Navbar/Navbar.module.css -------------------------------------------------------------------------------- /op-next-store/components/layout/Navbar/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/components/layout/Navbar/Navbar.tsx -------------------------------------------------------------------------------- /op-next-store/components/layout/ProductGridItems/ProductGridItems.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/components/layout/ProductGridItems/ProductGridItems.module.css -------------------------------------------------------------------------------- /op-next-store/components/layout/ProductGridItems/ProductGridItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/components/layout/ProductGridItems/ProductGridItems.tsx -------------------------------------------------------------------------------- /op-next-store/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/next.config.js -------------------------------------------------------------------------------- /op-next-store/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/package-lock.json -------------------------------------------------------------------------------- /op-next-store/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/package.json -------------------------------------------------------------------------------- /op-next-store/postcss.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/postcss.config.json -------------------------------------------------------------------------------- /op-next-store/products.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/products.json -------------------------------------------------------------------------------- /op-next-store/public/images/cancel-search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/cancel-search.svg -------------------------------------------------------------------------------- /op-next-store/public/images/img-1.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-1.avif -------------------------------------------------------------------------------- /op-next-store/public/images/img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-1.jpg -------------------------------------------------------------------------------- /op-next-store/public/images/img-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-1.webp -------------------------------------------------------------------------------- /op-next-store/public/images/img-10.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-10.avif -------------------------------------------------------------------------------- /op-next-store/public/images/img-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-10.jpg -------------------------------------------------------------------------------- /op-next-store/public/images/img-10.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-10.webp -------------------------------------------------------------------------------- /op-next-store/public/images/img-11.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-11.avif -------------------------------------------------------------------------------- /op-next-store/public/images/img-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-11.jpg -------------------------------------------------------------------------------- /op-next-store/public/images/img-11.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-11.webp -------------------------------------------------------------------------------- /op-next-store/public/images/img-12.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-12.avif -------------------------------------------------------------------------------- /op-next-store/public/images/img-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-12.jpg -------------------------------------------------------------------------------- /op-next-store/public/images/img-12.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-12.webp -------------------------------------------------------------------------------- /op-next-store/public/images/img-13.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-13.avif -------------------------------------------------------------------------------- /op-next-store/public/images/img-13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-13.jpg -------------------------------------------------------------------------------- /op-next-store/public/images/img-13.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-13.webp -------------------------------------------------------------------------------- /op-next-store/public/images/img-14.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-14.avif -------------------------------------------------------------------------------- /op-next-store/public/images/img-14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-14.jpg -------------------------------------------------------------------------------- /op-next-store/public/images/img-14.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-14.webp -------------------------------------------------------------------------------- /op-next-store/public/images/img-15.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-15.avif -------------------------------------------------------------------------------- /op-next-store/public/images/img-15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-15.jpg -------------------------------------------------------------------------------- /op-next-store/public/images/img-15.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-15.webp -------------------------------------------------------------------------------- /op-next-store/public/images/img-16.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-16.avif -------------------------------------------------------------------------------- /op-next-store/public/images/img-16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-16.jpg -------------------------------------------------------------------------------- /op-next-store/public/images/img-16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-16.webp -------------------------------------------------------------------------------- /op-next-store/public/images/img-17.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-17.avif -------------------------------------------------------------------------------- /op-next-store/public/images/img-17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-17.jpg -------------------------------------------------------------------------------- /op-next-store/public/images/img-17.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-17.webp -------------------------------------------------------------------------------- /op-next-store/public/images/img-18.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-18.avif -------------------------------------------------------------------------------- /op-next-store/public/images/img-18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-18.jpg -------------------------------------------------------------------------------- /op-next-store/public/images/img-18.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-18.webp -------------------------------------------------------------------------------- /op-next-store/public/images/img-19.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-19.avif -------------------------------------------------------------------------------- /op-next-store/public/images/img-19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-19.jpg -------------------------------------------------------------------------------- /op-next-store/public/images/img-19.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-19.webp -------------------------------------------------------------------------------- /op-next-store/public/images/img-2.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-2.avif -------------------------------------------------------------------------------- /op-next-store/public/images/img-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-2.jpg -------------------------------------------------------------------------------- /op-next-store/public/images/img-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-2.webp -------------------------------------------------------------------------------- /op-next-store/public/images/img-20.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-20.avif -------------------------------------------------------------------------------- /op-next-store/public/images/img-20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-20.jpg -------------------------------------------------------------------------------- /op-next-store/public/images/img-20.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-20.webp -------------------------------------------------------------------------------- /op-next-store/public/images/img-21.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-21.avif -------------------------------------------------------------------------------- /op-next-store/public/images/img-21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-21.jpg -------------------------------------------------------------------------------- /op-next-store/public/images/img-21.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-21.webp -------------------------------------------------------------------------------- /op-next-store/public/images/img-22.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-22.avif -------------------------------------------------------------------------------- /op-next-store/public/images/img-22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-22.jpg -------------------------------------------------------------------------------- /op-next-store/public/images/img-22.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-22.webp -------------------------------------------------------------------------------- /op-next-store/public/images/img-23.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-23.avif -------------------------------------------------------------------------------- /op-next-store/public/images/img-23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-23.jpg -------------------------------------------------------------------------------- /op-next-store/public/images/img-23.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-23.webp -------------------------------------------------------------------------------- /op-next-store/public/images/img-24.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-24.avif -------------------------------------------------------------------------------- /op-next-store/public/images/img-24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-24.jpg -------------------------------------------------------------------------------- /op-next-store/public/images/img-24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-24.webp -------------------------------------------------------------------------------- /op-next-store/public/images/img-25.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-25.avif -------------------------------------------------------------------------------- /op-next-store/public/images/img-25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-25.jpg -------------------------------------------------------------------------------- /op-next-store/public/images/img-25.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-25.webp -------------------------------------------------------------------------------- /op-next-store/public/images/img-26.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-26.avif -------------------------------------------------------------------------------- /op-next-store/public/images/img-26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-26.jpg -------------------------------------------------------------------------------- /op-next-store/public/images/img-26.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-26.webp -------------------------------------------------------------------------------- /op-next-store/public/images/img-27.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-27.avif -------------------------------------------------------------------------------- /op-next-store/public/images/img-27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-27.jpg -------------------------------------------------------------------------------- /op-next-store/public/images/img-27.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-27.webp -------------------------------------------------------------------------------- /op-next-store/public/images/img-28.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-28.avif -------------------------------------------------------------------------------- /op-next-store/public/images/img-28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-28.jpg -------------------------------------------------------------------------------- /op-next-store/public/images/img-28.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-28.webp -------------------------------------------------------------------------------- /op-next-store/public/images/img-29.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-29.avif -------------------------------------------------------------------------------- /op-next-store/public/images/img-29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-29.jpg -------------------------------------------------------------------------------- /op-next-store/public/images/img-29.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-29.webp -------------------------------------------------------------------------------- /op-next-store/public/images/img-3.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-3.avif -------------------------------------------------------------------------------- /op-next-store/public/images/img-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-3.jpg -------------------------------------------------------------------------------- /op-next-store/public/images/img-3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-3.webp -------------------------------------------------------------------------------- /op-next-store/public/images/img-30.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-30.avif -------------------------------------------------------------------------------- /op-next-store/public/images/img-30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-30.jpg -------------------------------------------------------------------------------- /op-next-store/public/images/img-30.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-30.webp -------------------------------------------------------------------------------- /op-next-store/public/images/img-31.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-31.avif -------------------------------------------------------------------------------- /op-next-store/public/images/img-31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-31.jpg -------------------------------------------------------------------------------- /op-next-store/public/images/img-31.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-31.webp -------------------------------------------------------------------------------- /op-next-store/public/images/img-32.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-32.avif -------------------------------------------------------------------------------- /op-next-store/public/images/img-32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-32.jpg -------------------------------------------------------------------------------- /op-next-store/public/images/img-32.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-32.webp -------------------------------------------------------------------------------- /op-next-store/public/images/img-33.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-33.avif -------------------------------------------------------------------------------- /op-next-store/public/images/img-33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-33.jpg -------------------------------------------------------------------------------- /op-next-store/public/images/img-33.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-33.webp -------------------------------------------------------------------------------- /op-next-store/public/images/img-34.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-34.avif -------------------------------------------------------------------------------- /op-next-store/public/images/img-34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-34.jpg -------------------------------------------------------------------------------- /op-next-store/public/images/img-34.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-34.webp -------------------------------------------------------------------------------- /op-next-store/public/images/img-35.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-35.avif -------------------------------------------------------------------------------- /op-next-store/public/images/img-35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-35.jpg -------------------------------------------------------------------------------- /op-next-store/public/images/img-35.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-35.webp -------------------------------------------------------------------------------- /op-next-store/public/images/img-36.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-36.avif -------------------------------------------------------------------------------- /op-next-store/public/images/img-36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-36.jpg -------------------------------------------------------------------------------- /op-next-store/public/images/img-36.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-36.webp -------------------------------------------------------------------------------- /op-next-store/public/images/img-37.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-37.avif -------------------------------------------------------------------------------- /op-next-store/public/images/img-37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-37.jpg -------------------------------------------------------------------------------- /op-next-store/public/images/img-37.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-37.webp -------------------------------------------------------------------------------- /op-next-store/public/images/img-38.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-38.avif -------------------------------------------------------------------------------- /op-next-store/public/images/img-38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-38.jpg -------------------------------------------------------------------------------- /op-next-store/public/images/img-38.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-38.webp -------------------------------------------------------------------------------- /op-next-store/public/images/img-4.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-4.avif -------------------------------------------------------------------------------- /op-next-store/public/images/img-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-4.jpg -------------------------------------------------------------------------------- /op-next-store/public/images/img-4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-4.webp -------------------------------------------------------------------------------- /op-next-store/public/images/img-5.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-5.avif -------------------------------------------------------------------------------- /op-next-store/public/images/img-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-5.jpg -------------------------------------------------------------------------------- /op-next-store/public/images/img-5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-5.webp -------------------------------------------------------------------------------- /op-next-store/public/images/img-6.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-6.avif -------------------------------------------------------------------------------- /op-next-store/public/images/img-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-6.jpg -------------------------------------------------------------------------------- /op-next-store/public/images/img-6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-6.webp -------------------------------------------------------------------------------- /op-next-store/public/images/img-7.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-7.avif -------------------------------------------------------------------------------- /op-next-store/public/images/img-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-7.jpg -------------------------------------------------------------------------------- /op-next-store/public/images/img-7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-7.webp -------------------------------------------------------------------------------- /op-next-store/public/images/img-8.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-8.avif -------------------------------------------------------------------------------- /op-next-store/public/images/img-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-8.jpg -------------------------------------------------------------------------------- /op-next-store/public/images/img-8.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-8.webp -------------------------------------------------------------------------------- /op-next-store/public/images/img-9.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-9.avif -------------------------------------------------------------------------------- /op-next-store/public/images/img-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-9.jpg -------------------------------------------------------------------------------- /op-next-store/public/images/img-9.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/img-9.webp -------------------------------------------------------------------------------- /op-next-store/public/images/next-store-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/public/images/next-store-logo.svg -------------------------------------------------------------------------------- /op-next-store/styles/custom-media-queries.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/styles/custom-media-queries.css -------------------------------------------------------------------------------- /op-next-store/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/tsconfig.json -------------------------------------------------------------------------------- /op-next-store/utils/interfaces.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/op-next-store/utils/interfaces.tsx -------------------------------------------------------------------------------- /open-props-v2-adaptive-cards/images/img-1.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/open-props-v2-adaptive-cards/images/img-1.avif -------------------------------------------------------------------------------- /open-props-v2-adaptive-cards/images/img-2.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/open-props-v2-adaptive-cards/images/img-2.avif -------------------------------------------------------------------------------- /open-props-v2-adaptive-cards/images/img-3.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/open-props-v2-adaptive-cards/images/img-3.avif -------------------------------------------------------------------------------- /open-props-v2-adaptive-cards/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/open-props-v2-adaptive-cards/index.html -------------------------------------------------------------------------------- /open-props-v2-adaptive-cards/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/open-props-v2-adaptive-cards/style.css -------------------------------------------------------------------------------- /openprops-meets-container-queries/assets/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/openprops-meets-container-queries/assets/arrow.svg -------------------------------------------------------------------------------- /openprops-meets-container-queries/assets/logo-animation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/openprops-meets-container-queries/assets/logo-animation.svg -------------------------------------------------------------------------------- /openprops-meets-container-queries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/openprops-meets-container-queries/index.html -------------------------------------------------------------------------------- /openprops-meets-container-queries/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/openprops-meets-container-queries/style.css -------------------------------------------------------------------------------- /product-details/images/img-1.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/product-details/images/img-1.avif -------------------------------------------------------------------------------- /product-details/images/img-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/product-details/images/img-1.webp -------------------------------------------------------------------------------- /product-details/images/img-2.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/product-details/images/img-2.avif -------------------------------------------------------------------------------- /product-details/images/img-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/product-details/images/img-2.webp -------------------------------------------------------------------------------- /product-details/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/product-details/index.html -------------------------------------------------------------------------------- /product-details/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/product-details/style.css -------------------------------------------------------------------------------- /product-details/utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/product-details/utilities.css -------------------------------------------------------------------------------- /recommendation-carousel/images/img-1.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/recommendation-carousel/images/img-1.avif -------------------------------------------------------------------------------- /recommendation-carousel/images/img-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/recommendation-carousel/images/img-1.webp -------------------------------------------------------------------------------- /recommendation-carousel/images/img-10.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/recommendation-carousel/images/img-10.avif -------------------------------------------------------------------------------- /recommendation-carousel/images/img-10.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/recommendation-carousel/images/img-10.webp -------------------------------------------------------------------------------- /recommendation-carousel/images/img-11.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/recommendation-carousel/images/img-11.avif -------------------------------------------------------------------------------- /recommendation-carousel/images/img-11.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/recommendation-carousel/images/img-11.webp -------------------------------------------------------------------------------- /recommendation-carousel/images/img-12.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/recommendation-carousel/images/img-12.avif -------------------------------------------------------------------------------- /recommendation-carousel/images/img-12.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/recommendation-carousel/images/img-12.webp -------------------------------------------------------------------------------- /recommendation-carousel/images/img-2.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/recommendation-carousel/images/img-2.avif -------------------------------------------------------------------------------- /recommendation-carousel/images/img-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/recommendation-carousel/images/img-2.webp -------------------------------------------------------------------------------- /recommendation-carousel/images/img-3.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/recommendation-carousel/images/img-3.avif -------------------------------------------------------------------------------- /recommendation-carousel/images/img-3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/recommendation-carousel/images/img-3.webp -------------------------------------------------------------------------------- /recommendation-carousel/images/img-4.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/recommendation-carousel/images/img-4.avif -------------------------------------------------------------------------------- /recommendation-carousel/images/img-4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/recommendation-carousel/images/img-4.webp -------------------------------------------------------------------------------- /recommendation-carousel/images/img-5.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/recommendation-carousel/images/img-5.avif -------------------------------------------------------------------------------- /recommendation-carousel/images/img-5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/recommendation-carousel/images/img-5.webp -------------------------------------------------------------------------------- /recommendation-carousel/images/img-6.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/recommendation-carousel/images/img-6.avif -------------------------------------------------------------------------------- /recommendation-carousel/images/img-6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/recommendation-carousel/images/img-6.webp -------------------------------------------------------------------------------- /recommendation-carousel/images/img-7.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/recommendation-carousel/images/img-7.avif -------------------------------------------------------------------------------- /recommendation-carousel/images/img-7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/recommendation-carousel/images/img-7.webp -------------------------------------------------------------------------------- /recommendation-carousel/images/img-8.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/recommendation-carousel/images/img-8.avif -------------------------------------------------------------------------------- /recommendation-carousel/images/img-8.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/recommendation-carousel/images/img-8.webp -------------------------------------------------------------------------------- /recommendation-carousel/images/img-9.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/recommendation-carousel/images/img-9.avif -------------------------------------------------------------------------------- /recommendation-carousel/images/img-9.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/recommendation-carousel/images/img-9.webp -------------------------------------------------------------------------------- /recommendation-carousel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/recommendation-carousel/index.html -------------------------------------------------------------------------------- /recommendation-carousel/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/recommendation-carousel/style.css -------------------------------------------------------------------------------- /scaling-with-golden-ratio/assets/icons/adoptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/scaling-with-golden-ratio/assets/icons/adoptable.png -------------------------------------------------------------------------------- /scaling-with-golden-ratio/assets/icons/consistenly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/scaling-with-golden-ratio/assets/icons/consistenly.png -------------------------------------------------------------------------------- /scaling-with-golden-ratio/assets/icons/customizable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/scaling-with-golden-ratio/assets/icons/customizable.png -------------------------------------------------------------------------------- /scaling-with-golden-ratio/assets/icons/predictable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/scaling-with-golden-ratio/assets/icons/predictable.png -------------------------------------------------------------------------------- /scaling-with-golden-ratio/assets/images/img-1.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/scaling-with-golden-ratio/assets/images/img-1.avif -------------------------------------------------------------------------------- /scaling-with-golden-ratio/assets/images/img-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/scaling-with-golden-ratio/assets/images/img-1.webp -------------------------------------------------------------------------------- /scaling-with-golden-ratio/assets/images/img-10.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/scaling-with-golden-ratio/assets/images/img-10.avif -------------------------------------------------------------------------------- /scaling-with-golden-ratio/assets/images/img-10.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/scaling-with-golden-ratio/assets/images/img-10.webp -------------------------------------------------------------------------------- /scaling-with-golden-ratio/assets/images/img-11.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/scaling-with-golden-ratio/assets/images/img-11.avif -------------------------------------------------------------------------------- /scaling-with-golden-ratio/assets/images/img-11.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/scaling-with-golden-ratio/assets/images/img-11.webp -------------------------------------------------------------------------------- /scaling-with-golden-ratio/assets/images/img-12.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/scaling-with-golden-ratio/assets/images/img-12.avif -------------------------------------------------------------------------------- /scaling-with-golden-ratio/assets/images/img-12.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/scaling-with-golden-ratio/assets/images/img-12.webp -------------------------------------------------------------------------------- /scaling-with-golden-ratio/assets/images/img-2.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/scaling-with-golden-ratio/assets/images/img-2.avif -------------------------------------------------------------------------------- /scaling-with-golden-ratio/assets/images/img-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/scaling-with-golden-ratio/assets/images/img-2.webp -------------------------------------------------------------------------------- /scaling-with-golden-ratio/assets/images/img-3.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/scaling-with-golden-ratio/assets/images/img-3.avif -------------------------------------------------------------------------------- /scaling-with-golden-ratio/assets/images/img-3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/scaling-with-golden-ratio/assets/images/img-3.webp -------------------------------------------------------------------------------- /scaling-with-golden-ratio/assets/images/img-4.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/scaling-with-golden-ratio/assets/images/img-4.avif -------------------------------------------------------------------------------- /scaling-with-golden-ratio/assets/images/img-4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/scaling-with-golden-ratio/assets/images/img-4.webp -------------------------------------------------------------------------------- /scaling-with-golden-ratio/assets/images/img-5.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/scaling-with-golden-ratio/assets/images/img-5.avif -------------------------------------------------------------------------------- /scaling-with-golden-ratio/assets/images/img-5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/scaling-with-golden-ratio/assets/images/img-5.webp -------------------------------------------------------------------------------- /scaling-with-golden-ratio/assets/images/img-6.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/scaling-with-golden-ratio/assets/images/img-6.avif -------------------------------------------------------------------------------- /scaling-with-golden-ratio/assets/images/img-6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/scaling-with-golden-ratio/assets/images/img-6.webp -------------------------------------------------------------------------------- /scaling-with-golden-ratio/assets/images/img-7.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/scaling-with-golden-ratio/assets/images/img-7.avif -------------------------------------------------------------------------------- /scaling-with-golden-ratio/assets/images/img-7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/scaling-with-golden-ratio/assets/images/img-7.webp -------------------------------------------------------------------------------- /scaling-with-golden-ratio/assets/images/img-8.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/scaling-with-golden-ratio/assets/images/img-8.avif -------------------------------------------------------------------------------- /scaling-with-golden-ratio/assets/images/img-8.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/scaling-with-golden-ratio/assets/images/img-8.webp -------------------------------------------------------------------------------- /scaling-with-golden-ratio/assets/images/img-9.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/scaling-with-golden-ratio/assets/images/img-9.avif -------------------------------------------------------------------------------- /scaling-with-golden-ratio/assets/images/img-9.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/scaling-with-golden-ratio/assets/images/img-9.webp -------------------------------------------------------------------------------- /scaling-with-golden-ratio/assets/images/img-next.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/scaling-with-golden-ratio/assets/images/img-next.avif -------------------------------------------------------------------------------- /scaling-with-golden-ratio/assets/images/img-next.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/scaling-with-golden-ratio/assets/images/img-next.webp -------------------------------------------------------------------------------- /scaling-with-golden-ratio/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/scaling-with-golden-ratio/assets/logo.svg -------------------------------------------------------------------------------- /scaling-with-golden-ratio/assets/noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/scaling-with-golden-ratio/assets/noise.png -------------------------------------------------------------------------------- /scaling-with-golden-ratio/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/scaling-with-golden-ratio/index.html -------------------------------------------------------------------------------- /scaling-with-golden-ratio/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/scaling-with-golden-ratio/style.css -------------------------------------------------------------------------------- /services-section/images/img-1.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/services-section/images/img-1.avif -------------------------------------------------------------------------------- /services-section/images/img-2.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/services-section/images/img-2.avif -------------------------------------------------------------------------------- /services-section/images/img-3.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/services-section/images/img-3.avif -------------------------------------------------------------------------------- /services-section/images/main-img.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/services-section/images/main-img.avif -------------------------------------------------------------------------------- /services-section/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/services-section/index.html -------------------------------------------------------------------------------- /services-section/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/services-section/style.css -------------------------------------------------------------------------------- /sidenav-with-view-transition-api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/sidenav-with-view-transition-api/index.html -------------------------------------------------------------------------------- /sidenav-with-view-transition-api/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/sidenav-with-view-transition-api/script.js -------------------------------------------------------------------------------- /sidenav-with-view-transition-api/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/sidenav-with-view-transition-api/style.css -------------------------------------------------------------------------------- /sign-in-open-props/assets/bg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/sign-in-open-props/assets/bg.webp -------------------------------------------------------------------------------- /sign-in-open-props/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/sign-in-open-props/assets/logo.svg -------------------------------------------------------------------------------- /sign-in-open-props/assets/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/sign-in-open-props/assets/user.svg -------------------------------------------------------------------------------- /sign-in-open-props/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/sign-in-open-props/index.html -------------------------------------------------------------------------------- /sign-in-open-props/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/sign-in-open-props/style.css -------------------------------------------------------------------------------- /slider-scroll-snap-events/images/img-1.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/slider-scroll-snap-events/images/img-1.avif -------------------------------------------------------------------------------- /slider-scroll-snap-events/images/img-2.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/slider-scroll-snap-events/images/img-2.avif -------------------------------------------------------------------------------- /slider-scroll-snap-events/images/img-3.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/slider-scroll-snap-events/images/img-3.avif -------------------------------------------------------------------------------- /slider-scroll-snap-events/images/img-4.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/slider-scroll-snap-events/images/img-4.avif -------------------------------------------------------------------------------- /slider-scroll-snap-events/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/slider-scroll-snap-events/index.html -------------------------------------------------------------------------------- /slider-scroll-snap-events/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/slider-scroll-snap-events/script.js -------------------------------------------------------------------------------- /slider-scroll-snap-events/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/slider-scroll-snap-events/style.css -------------------------------------------------------------------------------- /sticky-slider-cta-cards/assets/img-1.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/sticky-slider-cta-cards/assets/img-1.avif -------------------------------------------------------------------------------- /sticky-slider-cta-cards/assets/img-2.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/sticky-slider-cta-cards/assets/img-2.avif -------------------------------------------------------------------------------- /sticky-slider-cta-cards/assets/img-3.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/sticky-slider-cta-cards/assets/img-3.avif -------------------------------------------------------------------------------- /sticky-slider-cta-cards/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/sticky-slider-cta-cards/index.html -------------------------------------------------------------------------------- /sticky-slider-cta-cards/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/sticky-slider-cta-cards/style.css -------------------------------------------------------------------------------- /stories-with-scroll-driven/images/img-desktop-1.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/stories-with-scroll-driven/images/img-desktop-1.avif -------------------------------------------------------------------------------- /stories-with-scroll-driven/images/img-desktop-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/stories-with-scroll-driven/images/img-desktop-1.webp -------------------------------------------------------------------------------- /stories-with-scroll-driven/images/img-desktop-2.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/stories-with-scroll-driven/images/img-desktop-2.avif -------------------------------------------------------------------------------- /stories-with-scroll-driven/images/img-desktop-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/stories-with-scroll-driven/images/img-desktop-2.webp -------------------------------------------------------------------------------- /stories-with-scroll-driven/images/img-desktop-3.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/stories-with-scroll-driven/images/img-desktop-3.avif -------------------------------------------------------------------------------- /stories-with-scroll-driven/images/img-desktop-3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/stories-with-scroll-driven/images/img-desktop-3.webp -------------------------------------------------------------------------------- /stories-with-scroll-driven/images/img-mobile-1.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/stories-with-scroll-driven/images/img-mobile-1.avif -------------------------------------------------------------------------------- /stories-with-scroll-driven/images/img-mobile-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/stories-with-scroll-driven/images/img-mobile-1.webp -------------------------------------------------------------------------------- /stories-with-scroll-driven/images/img-mobile-2.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/stories-with-scroll-driven/images/img-mobile-2.avif -------------------------------------------------------------------------------- /stories-with-scroll-driven/images/img-mobile-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/stories-with-scroll-driven/images/img-mobile-2.webp -------------------------------------------------------------------------------- /stories-with-scroll-driven/images/img-mobile-3.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/stories-with-scroll-driven/images/img-mobile-3.avif -------------------------------------------------------------------------------- /stories-with-scroll-driven/images/img-mobile-3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/stories-with-scroll-driven/images/img-mobile-3.webp -------------------------------------------------------------------------------- /stories-with-scroll-driven/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/stories-with-scroll-driven/index.html -------------------------------------------------------------------------------- /stories-with-scroll-driven/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/stories-with-scroll-driven/style.css -------------------------------------------------------------------------------- /tabbed-interface/assets/gif-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/tabbed-interface/assets/gif-4.gif -------------------------------------------------------------------------------- /tabbed-interface/assets/img-1.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/tabbed-interface/assets/img-1.avif -------------------------------------------------------------------------------- /tabbed-interface/assets/img-2.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/tabbed-interface/assets/img-2.avif -------------------------------------------------------------------------------- /tabbed-interface/assets/img-3.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/tabbed-interface/assets/img-3.avif -------------------------------------------------------------------------------- /tabbed-interface/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/tabbed-interface/index.html -------------------------------------------------------------------------------- /tabbed-interface/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/tabbed-interface/style.css -------------------------------------------------------------------------------- /theme-switch-component-with-normalize/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/theme-switch-component-with-normalize/index.html -------------------------------------------------------------------------------- /theme-switch-component-with-normalize/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/theme-switch-component-with-normalize/style.css -------------------------------------------------------------------------------- /theme-switch-component-with-normalize/theme-toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/theme-switch-component-with-normalize/theme-toggle.js -------------------------------------------------------------------------------- /view-transitions-dialog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/view-transitions-dialog/index.html -------------------------------------------------------------------------------- /view-transitions-dialog/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/view-transitions-dialog/script.js -------------------------------------------------------------------------------- /view-transitions-dialog/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/view-transitions-dialog/style.css -------------------------------------------------------------------------------- /visual-balance-with-relative-sizes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/visual-balance-with-relative-sizes/index.html -------------------------------------------------------------------------------- /visual-balance-with-relative-sizes/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobalti/open-props-interfaces/HEAD/visual-balance-with-relative-sizes/style.css --------------------------------------------------------------------------------