fix(banner): create better banner style
This commit is contained in:
@@ -1,112 +1,178 @@
|
||||
.sodino-banner {
|
||||
.sodino-banner-wrap {
|
||||
direction: rtl;
|
||||
position: relative;
|
||||
z-index: 9999;
|
||||
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
||||
}
|
||||
|
||||
.sodino-banner-wrap {
|
||||
margin: 0 auto;
|
||||
max-width: 1200px;
|
||||
padding: 18px 22px;
|
||||
z-index: 99990;
|
||||
box-sizing: border-box;
|
||||
margin: 18px auto;
|
||||
width: min(1120px, calc(100% - 32px));
|
||||
padding: 18px;
|
||||
overflow: hidden;
|
||||
color: #172033;
|
||||
background: #ffffff;
|
||||
border: 1px solid rgba(148, 163, 184, 0.35);
|
||||
border-radius: 1rem;
|
||||
box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
|
||||
border: 1px solid rgba(15, 23, 42, 0.12);
|
||||
border-radius: 18px;
|
||||
box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
|
||||
font-family: inherit;
|
||||
}
|
||||
|
||||
.sodino-banner-top {
|
||||
.sodino-banner-wrap *,
|
||||
.sodino-banner-wrap *::before,
|
||||
.sodino-banner-wrap *::after {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.sodino-banner-content {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-height: 64px;
|
||||
}
|
||||
|
||||
.sodino-banner-link {
|
||||
display: block;
|
||||
width: 100%;
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.sodino-banner-link:hover,
|
||||
.sodino-banner-link:focus {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.sodino-banner-link:focus-visible {
|
||||
outline: 3px solid rgba(37, 99, 235, 0.35);
|
||||
outline-offset: 4px;
|
||||
border-radius: 14px;
|
||||
}
|
||||
|
||||
.sodino-banner-image {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
max-height: min(420px, 70vh);
|
||||
object-fit: cover;
|
||||
border-radius: 14px;
|
||||
}
|
||||
|
||||
.sodino-banner-close {
|
||||
position: absolute;
|
||||
top: 12px;
|
||||
left: 12px;
|
||||
z-index: 3;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 38px;
|
||||
height: 38px;
|
||||
padding: 0;
|
||||
color: #0f172a;
|
||||
background: rgba(255, 255, 255, 0.94);
|
||||
border: 1px solid rgba(15, 23, 42, 0.14);
|
||||
border-radius: 999px;
|
||||
box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
|
||||
font-size: 26px;
|
||||
line-height: 1;
|
||||
cursor: pointer;
|
||||
transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
|
||||
}
|
||||
|
||||
.sodino-banner-close:hover,
|
||||
.sodino-banner-close:focus {
|
||||
background: #ffffff;
|
||||
border-color: rgba(15, 23, 42, 0.28);
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
||||
.sodino-banner-close:focus-visible {
|
||||
outline: 3px solid rgba(37, 99, 235, 0.35);
|
||||
outline-offset: 2px;
|
||||
}
|
||||
|
||||
.sodino-banner-backdrop {
|
||||
position: fixed;
|
||||
top: 20px;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
width: calc(100% - 32px);
|
||||
max-width: 1100px;
|
||||
}
|
||||
|
||||
.sodino-banner-bottom {
|
||||
position: fixed;
|
||||
bottom: 20px;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
width: calc(100% - 32px);
|
||||
max-width: 1100px;
|
||||
}
|
||||
|
||||
.sodino-banner-floating_bar {
|
||||
position: fixed;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
width: calc(100% - 32px);
|
||||
max-width: 1100px;
|
||||
}
|
||||
|
||||
.sodino-banner-position-top.sodino-banner-floating_bar,
|
||||
.sodino-banner-position-middle.sodino-banner-floating_bar {
|
||||
top: 20px;
|
||||
}
|
||||
|
||||
.sodino-banner-position-bottom.sodino-banner-floating_bar,
|
||||
.sodino-banner-position-cart.sodino-banner-floating_bar,
|
||||
.sodino-banner-position-product_page.sodino-banner-floating_bar {
|
||||
bottom: 20px;
|
||||
inset: 0;
|
||||
z-index: 99989;
|
||||
background: rgba(15, 23, 42, 0.46);
|
||||
backdrop-filter: blur(3px);
|
||||
}
|
||||
|
||||
.sodino-banner-popup {
|
||||
position: fixed;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
width: min(680px, calc(100% - 32px));
|
||||
max-height: calc(100vh - 32px);
|
||||
margin: 0;
|
||||
padding: 46px 18px 18px;
|
||||
overflow: auto;
|
||||
transform: translate(-50%, -50%);
|
||||
max-width: 95%;
|
||||
width: 680px;
|
||||
background: #ffffff;
|
||||
box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
|
||||
border-radius: 24px;
|
||||
box-shadow: 0 28px 90px rgba(15, 23, 42, 0.28);
|
||||
}
|
||||
|
||||
.sodino-banner-close {
|
||||
position: absolute;
|
||||
top: 14px;
|
||||
right: 16px;
|
||||
background: rgba(15, 23, 42, 0.06);
|
||||
border: none;
|
||||
color: #0f172a;
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
border-radius: 9999px;
|
||||
font-size: 1.2rem;
|
||||
cursor: pointer;
|
||||
.sodino-banner-popup .sodino-banner-content {
|
||||
min-height: 120px;
|
||||
}
|
||||
|
||||
.sodino-banner-content {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
gap: 20px;
|
||||
flex-wrap: wrap;
|
||||
.sodino-banner-popup .sodino-banner-image {
|
||||
max-height: min(560px, 72vh);
|
||||
border-radius: 18px;
|
||||
}
|
||||
|
||||
.sodino-banner-image {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
border-radius: 1rem;
|
||||
display: block;
|
||||
.sodino-banner-floating_bar,
|
||||
.sodino-banner-position-top.sodino-banner-inline,
|
||||
.sodino-banner-position-bottom.sodino-banner-inline {
|
||||
position: fixed;
|
||||
left: 50%;
|
||||
width: min(1040px, calc(100% - 32px));
|
||||
margin: 0;
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
|
||||
.sodino-banner-link {
|
||||
display: inline-block;
|
||||
.sodino-banner-position-top.sodino-banner-floating_bar,
|
||||
.sodino-banner-position-top.sodino-banner-inline {
|
||||
top: 18px;
|
||||
}
|
||||
|
||||
.sodino-banner-position-bottom.sodino-banner-floating_bar,
|
||||
.sodino-banner-position-bottom.sodino-banner-inline,
|
||||
.sodino-banner-position-cart.sodino-banner-floating_bar,
|
||||
.sodino-banner-position-product_page.sodino-banner-floating_bar {
|
||||
bottom: 18px;
|
||||
}
|
||||
|
||||
.sodino-banner-position-middle.sodino-banner-floating_bar {
|
||||
top: 18px;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.sodino-banner-top,
|
||||
.sodino-banner-bottom,
|
||||
.sodino-banner-floating_bar,
|
||||
.sodino-banner-popup {
|
||||
.sodino-banner-wrap {
|
||||
width: calc(100% - 20px);
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
padding: 14px;
|
||||
border-radius: 16px;
|
||||
}
|
||||
|
||||
.sodino-banner-popup {
|
||||
max-width: 95%;
|
||||
width: calc(100% - 20px);
|
||||
padding: 44px 12px 12px;
|
||||
border-radius: 20px;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
|
||||
.sodino-banner-floating_bar,
|
||||
.sodino-banner-position-top.sodino-banner-inline,
|
||||
.sodino-banner-position-bottom.sodino-banner-inline {
|
||||
width: calc(100% - 20px);
|
||||
}
|
||||
|
||||
.sodino-banner-close {
|
||||
top: 9px;
|
||||
left: 9px;
|
||||
width: 34px;
|
||||
height: 34px;
|
||||
font-size: 24px;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user