Compare commits
No commits in common. "d535a21de9585893ff1529d8dfe2f8d16cfa578f" and "7677f89e2a0bdc989b5daeb0ee7654f8d08abb18" have entirely different histories.
d535a21de9
...
7677f89e2a
|
@ -1,204 +0,0 @@
|
|||
body.rwavw-custom {
|
||||
.widget.rwavw-feature-narrow {
|
||||
// bg color of row group accent
|
||||
$bg-color: $accent-500;
|
||||
.pure-g > div {
|
||||
justify-content: flex-start;
|
||||
}
|
||||
|
||||
.row-group {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
|
||||
margin-bottom: 44px;
|
||||
text-align: center;
|
||||
|
||||
p {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
&::before {
|
||||
content: '';
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: -11px;
|
||||
bottom: -11px;
|
||||
left: -16px;
|
||||
right: -16px;
|
||||
background-color: $bg-color;
|
||||
|
||||
background: linear-gradient(
|
||||
to top right,
|
||||
rgba($bg-color, 1),
|
||||
rgba($bg-color, 0.7)
|
||||
);
|
||||
opacity: 0.5;
|
||||
}
|
||||
}
|
||||
|
||||
.row-group + p {
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
@media (min-width: 64em) {
|
||||
.row-group::before {
|
||||
top: -11px;
|
||||
bottom: -11px;
|
||||
left: calc((100vw - 1000px) / -2);
|
||||
right: -22px;
|
||||
background: linear-gradient(
|
||||
to right,
|
||||
rgba($bg-color, 0.8),
|
||||
rgba($bg-color, 1)
|
||||
);
|
||||
opacity: 0.4;
|
||||
}
|
||||
|
||||
.pure-g > div:last-child .row-group::before {
|
||||
left: -22px;
|
||||
right: calc((100vw - 1000px) / -2);
|
||||
background: linear-gradient(
|
||||
to left,
|
||||
rgba($bg-color, 0.8),
|
||||
rgba($bg-color, 1)
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
p, .heading-section-title {
|
||||
margin-bottom: 44px;
|
||||
}
|
||||
|
||||
.heading-section-title + p {
|
||||
margin-top: -22px;
|
||||
}
|
||||
|
||||
p {
|
||||
font-weight: 600;
|
||||
font-size: 18px;
|
||||
line-height: 27px;
|
||||
margin-top: 0;
|
||||
opacity: 0.6;
|
||||
|
||||
&:not(:last-child) {
|
||||
padding-right: 18px;
|
||||
}
|
||||
|
||||
a {
|
||||
z-index: 1;
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
font-size: 18px;
|
||||
font-weight: 700;
|
||||
margin-left: -22px;
|
||||
padding: 0 22px;
|
||||
line-height: 42px;
|
||||
height: 44px;
|
||||
|
||||
&::before {
|
||||
content: '';
|
||||
z-index: -1;
|
||||
display: block;
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
top: 0;
|
||||
left: 0;
|
||||
|
||||
background-color: $accent-500;
|
||||
background-color: linear-gradient(
|
||||
to top right,
|
||||
rgba($accent-500, 1),
|
||||
rgba($accent-500, 0.8)
|
||||
);
|
||||
box-shadow: 4px 4px 6px rgba(47, 28, 4, 0.25), 2px 2px 4px rgba(#fff, 0.25) inset;
|
||||
|
||||
transition: opacity 0.3s, transform 0.3s;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
|
||||
transition: color .3s;
|
||||
|
||||
&:link,
|
||||
&:visited {
|
||||
color: $neutral-900;
|
||||
}
|
||||
|
||||
&:hover,
|
||||
&:active {
|
||||
color: #000;
|
||||
|
||||
&::before {
|
||||
transform: scale(0.975);
|
||||
opacity: 0.6;
|
||||
}
|
||||
}
|
||||
|
||||
svg {
|
||||
position: relative;
|
||||
height: 28px;
|
||||
top: 8px;
|
||||
margin-left: 4px;
|
||||
color: inherit;
|
||||
}
|
||||
}
|
||||
|
||||
&.text-right a {
|
||||
margin-right: -22px;
|
||||
}
|
||||
}
|
||||
|
||||
.swiper-container {
|
||||
border-radius: $border-radius;
|
||||
box-shadow: 4px 4px 6px 0 rgba(0, 10, 56, 0.2);
|
||||
}
|
||||
|
||||
.swiper-wrapper {
|
||||
position: relative;
|
||||
border-radius: $border-radius;
|
||||
overflow: hidden;
|
||||
|
||||
&::after {
|
||||
content: '';
|
||||
display: block;
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
top: 0;
|
||||
left: 0;
|
||||
pointer-events: none;
|
||||
|
||||
background-color: rgba(0, 10, 56, 0.3);
|
||||
box-shadow: 0 0 66px 0 rgba(0, 10, 56, 0.6) inset;
|
||||
|
||||
opacity: 0.6;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 64em) {
|
||||
p {
|
||||
text-align: center !important;
|
||||
|
||||
a {
|
||||
margin-left: 0;
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.swiper-wrapper {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 64em) {
|
||||
p, .heading-section-title {
|
||||
margin-bottom: 44px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -23,11 +23,6 @@ body.rwavw-custom {
|
|||
justify-content: center;
|
||||
}
|
||||
|
||||
img {
|
||||
box-shadow: $box-shadow-sk;
|
||||
border-radius: $border-radius;
|
||||
}
|
||||
|
||||
@media (max-width: 630px) {
|
||||
.pure-g {
|
||||
> div {
|
||||
|
|
|
@ -57,6 +57,180 @@ body.rwavw-custom {
|
|||
}
|
||||
}
|
||||
|
||||
.widget.rwavw-feature-narrow {
|
||||
// bg color of row group accent
|
||||
$bg-color: $accent-500;
|
||||
.pure-g > div {
|
||||
justify-content: flex-start;
|
||||
}
|
||||
|
||||
.row-group {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
|
||||
margin-bottom: 44px;
|
||||
text-align: center;
|
||||
|
||||
p {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
&::before {
|
||||
content: '';
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: -11px;
|
||||
bottom: -11px;
|
||||
left: -16px;
|
||||
right: -16px;
|
||||
background-color: $bg-color;
|
||||
|
||||
background: linear-gradient(
|
||||
to top right,
|
||||
rgba($bg-color, 1),
|
||||
rgba($bg-color, 0.7)
|
||||
);
|
||||
opacity: 0.5;
|
||||
}
|
||||
}
|
||||
|
||||
.row-group + p {
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
@media (min-width: 64em) {
|
||||
.row-group::before {
|
||||
top: -11px;
|
||||
bottom: -11px;
|
||||
left: calc((100vw - 1000px) / -2);
|
||||
right: -22px;
|
||||
background: linear-gradient(
|
||||
to right,
|
||||
rgba($bg-color, 0.8),
|
||||
rgba($bg-color, 1)
|
||||
);
|
||||
opacity: 0.4;
|
||||
// border-radius: 25px;
|
||||
}
|
||||
|
||||
.pure-g > div:last-child .row-group::before {
|
||||
left: -22px;
|
||||
right: calc((100vw - 1000px) / -2);
|
||||
background: linear-gradient(
|
||||
to left,
|
||||
rgba($bg-color, 0.8),
|
||||
rgba($bg-color, 1)
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
p, .heading-section-title {
|
||||
margin-bottom: 44px;
|
||||
}
|
||||
|
||||
.heading-section-title + p {
|
||||
margin-top: -22px;
|
||||
}
|
||||
|
||||
p {
|
||||
font-weight: 600;
|
||||
font-size: 18px;
|
||||
line-height: 27px;
|
||||
margin-top: 0;
|
||||
opacity: 0.6;
|
||||
|
||||
&:not(:last-child) {
|
||||
padding-right: 18px;
|
||||
}
|
||||
|
||||
a {
|
||||
display: inline-block;
|
||||
color: rgb(0, 10, 56);
|
||||
font-size: 18px;
|
||||
font-weight: 700;
|
||||
background-color: rgba(0, 10, 56, 0.05);
|
||||
margin-left: -22px;
|
||||
padding: 0 22px;
|
||||
// border-radius: 22px;
|
||||
line-height: 42px;
|
||||
height: 44px;
|
||||
|
||||
color: $neutral-900;
|
||||
background-color: $accent-500;
|
||||
background-color: linear-gradient(
|
||||
to top right,
|
||||
rgba($accent-500, 1),
|
||||
rgba($accent-500, 0.8)
|
||||
);
|
||||
|
||||
box-shadow: 4px 4px 6px rgba(47, 28, 4, 0.25), 2px 2px 4px rgba(#fff, 0.25) inset;
|
||||
|
||||
svg {
|
||||
position: relative;
|
||||
height: 28px;
|
||||
top: 8px;
|
||||
margin-left: 4px;
|
||||
color: inherit;
|
||||
}
|
||||
}
|
||||
|
||||
&.text-right a {
|
||||
margin-right: -22px;
|
||||
}
|
||||
}
|
||||
|
||||
.swiper-container {
|
||||
border-radius: $border-radius;
|
||||
box-shadow: 4px 4px 6px 0 rgba(0, 10, 56, 0.2);
|
||||
}
|
||||
|
||||
.swiper-wrapper {
|
||||
position: relative;
|
||||
border-radius: $border-radius;
|
||||
overflow: hidden;
|
||||
|
||||
&::after {
|
||||
content: '';
|
||||
display: block;
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
top: 0;
|
||||
left: 0;
|
||||
pointer-events: none;
|
||||
|
||||
background-color: rgba(0, 10, 56, 0.3);
|
||||
box-shadow: 0 0 66px 0 rgba(0, 10, 56, 0.6) inset;
|
||||
|
||||
opacity: 0.6;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 64em) {
|
||||
p {
|
||||
text-align: center !important;
|
||||
|
||||
a {
|
||||
margin-left: 0;
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.swiper-wrapper {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 64em) {
|
||||
p, .heading-section-title {
|
||||
margin-bottom: 44px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.widget.rwavw-feature-details {
|
||||
.pure-g > div {
|
||||
justify-content: flex-start;
|
||||
|
@ -78,7 +252,7 @@ body.rwavw-custom {
|
|||
}
|
||||
|
||||
.widget.rwavw-feature-limits {
|
||||
.heading-section-title {
|
||||
h2, h3, h4, h5, h6 {
|
||||
margin-top: 44px;
|
||||
|
||||
@media (min-width: 64em) {
|
||||
|
@ -86,32 +260,6 @@ body.rwavw-custom {
|
|||
text-align: left !important;
|
||||
}
|
||||
}
|
||||
|
||||
.pure-g > div:first-child {
|
||||
position: relative;
|
||||
|
||||
&::after {
|
||||
content: '';
|
||||
display: block;
|
||||
position: absolute;
|
||||
height: 100%;
|
||||
top: 0;
|
||||
left: 15px;
|
||||
right: 15px;
|
||||
|
||||
$bg-color: $neutral-900;
|
||||
background-color: rgba($bg-color, 0.2);
|
||||
box-shadow: 0 0 66px 0 rgba($bg-color, 0.4) inset;
|
||||
|
||||
@media (min-width: 64em) {
|
||||
right: 44px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
img {
|
||||
box-shadow: $box-shadow-sk;
|
||||
}
|
||||
}
|
||||
|
||||
.widget.rwavw-feature-main {
|
||||
|
|
|
@ -5,10 +5,6 @@ body.rwavw-custom {
|
|||
color: #b0b0b0;
|
||||
background-color: $neutral-900;
|
||||
|
||||
* {
|
||||
background-color: inherit;
|
||||
}
|
||||
|
||||
a {
|
||||
color: $accent-500;
|
||||
font-weight: 600;
|
||||
|
|
|
@ -80,13 +80,6 @@ body.rwavw-custom {
|
|||
|
||||
border: 3px solid $accent-500;
|
||||
|
||||
transition: opacity .2s;
|
||||
opacity: 1;
|
||||
|
||||
&:hover {
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
&:first-child {
|
||||
$bg-color: $accent-500;
|
||||
|
||||
|
|
|
@ -5,6 +5,6 @@ $neutral-900: #231f20;
|
|||
|
||||
|
||||
$box-shadow-sk: 4px 4px 6px rgba(0, 10, 56, 0.15), -4px -4px 9px rgba(#fff, 0.75);
|
||||
$border-radius: 3px;
|
||||
$border-radius: 6px;
|
||||
|
||||
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
@import "hero";
|
||||
@import "featured";
|
||||
@import "feature-sunset";
|
||||
@import "feature-narrow";
|
||||
@import "contact";
|
||||
@import "faq";
|
||||
@import "social-proof";
|
||||
|
@ -152,10 +151,6 @@ body.rwavw-custom {
|
|||
);
|
||||
}
|
||||
|
||||
.heading-page-title {
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.heading-section-title {
|
||||
font-weight: 400;
|
||||
font-size: 32px;
|
||||
|
@ -178,9 +173,6 @@ body.rwavw-custom {
|
|||
}
|
||||
|
||||
.widget.rwavw-cta-box {
|
||||
box-shadow: $box-shadow-sk;
|
||||
border-radius: $border-radius;
|
||||
|
||||
.section-cols > .pure-g {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
|
Loading…
Reference in New Issue