Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions _compress_images_cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -547,6 +547,10 @@ assets/images/guide/payments/transactions/transactions-mobile.jpg: transactions-
assets/images/guide/payments/transactions/transactions-mobile@2x.jpg: transactions-mobile@2x.jpg
assets/images/guide/onboarding/getting-to-know-your-users-mobile@2x.jpg: getting-to-know-your-users-mobile@2x.jpg
assets/images/guide/onboarding/getting-to-know-your-users-mobile.jpg: getting-to-know-your-users-mobile.jpg
assets/images/home/banner/the-meta-future-mobile.jpg: the-meta-future-mobile.jpg
assets/images/home/banner/the-meta-future-mobile@2x.jpg: the-meta-future-mobile@2x.jpg
assets/images/home/banner/the-meta-future.jpg: the-meta-future.jpg
assets/images/home/banner/the-meta-future@2x.jpg: the-meta-future@2x.jpg
assets/images/guide/getting-started/common-user-flows/muun-onboarding-1.png: muun-onboarding-1.png
assets/images/guide/getting-started/common-user-flows/muun-onboarding-10.png: muun-onboarding-10.png
assets/images/guide/getting-started/common-user-flows/muun-onboarding-10@2x.png: muun-onboarding-10@2x.png
Expand Down
26 changes: 21 additions & 5 deletions _sass/minima/_home-banner.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@
max-width: 1680px;
margin-left: auto;
margin-right: auto;
background-color: var(--banner-background-color);
background-image: var(--banner-background-path-mobile);
background-size: cover;
background-repeat: no-repeat;
background-position: center top;
transition: background-color 150ms $ease;

@include retina() {
background-image: var(--banner-background-path-mobile-retina);
}

.home-banner-copy-wrapper {
background-color: var(--copy-background-color);
Expand Down Expand Up @@ -78,15 +88,15 @@
.home-banner-image {
width: 100%;
padding-bottom: 100%;
background-color: var(--background-image-color);
background-image: var(--background-image-path-mobile);
background-color: var(--banner-image-color);
background-image: var(--banner-image-path-mobile);
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
transition: background-color 150ms $ease;

@include retina() {
background-image: var(--background-image-path-mobile-retina);
background-image: var(--banner-image-path-mobile-retina);
}
}

Expand All @@ -112,12 +122,18 @@
display: flex;
flex-direction: row;
align-items: stretch;
background-image: var(--banner-background-path);
background-position: center center;

@include retina() {
background-image: var(--banner-background-path-retina);
}

.home-banner-image {
background-image: var(--background-image-path);
background-image: var(--banner-image-path);

@include retina() {
background-image: var(--background-image-path-retina);
background-image: var(--banner-image-path-retina);
}
}

Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/home/banner/the-meta-future.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/home/banner/the-meta-future@2x.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading