Compare commits
No commits in common. "7677f89e2a0bdc989b5daeb0ee7654f8d08abb18" and "782807f5ae8fbf3eda8fde18fa2403bf7bcb6880" have entirely different histories.
7677f89e2a
...
782807f5ae
|
@ -43,7 +43,9 @@ body.rwavw-custom {
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 63.98em) {
|
@media (max-width: 63.98em) {
|
||||||
|
|
||||||
.pure-g {
|
.pure-g {
|
||||||
|
|
||||||
> div {
|
> div {
|
||||||
position: relative;
|
position: relative;
|
||||||
&:first-child {
|
&:first-child {
|
||||||
|
@ -65,7 +67,7 @@ body.rwavw-custom {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.heading-section-title, p {
|
h2, h3, h4, h5, h6, p {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,7 +8,7 @@ body.rwavw-custom {
|
||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.heading-section-title {
|
h2, h3, h4, h5, h6 {
|
||||||
color: #000a38;
|
color: #000a38;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -30,7 +30,7 @@ body.rwavw-custom {
|
||||||
svg {
|
svg {
|
||||||
height: 44px;
|
height: 44px;
|
||||||
width: auto;
|
width: auto;
|
||||||
// color: $accent-500;
|
opacity: 0.8;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -58,122 +58,49 @@ body.rwavw-custom {
|
||||||
}
|
}
|
||||||
|
|
||||||
.widget.rwavw-feature-narrow {
|
.widget.rwavw-feature-narrow {
|
||||||
// bg color of row group accent
|
|
||||||
$bg-color: $accent-500;
|
|
||||||
.pure-g > div {
|
.pure-g > div {
|
||||||
justify-content: flex-start;
|
justify-content: flex-start;
|
||||||
}
|
}
|
||||||
|
|
||||||
.row-group {
|
.row-group {
|
||||||
position: relative;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
||||||
margin-bottom: 44px;
|
|
||||||
text-align: center;
|
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 {
|
p, .heading-section-title {
|
||||||
margin-bottom: 44px;
|
margin-bottom: 22px;
|
||||||
}
|
|
||||||
|
|
||||||
.heading-section-title + p {
|
|
||||||
margin-top: -22px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
font-size: 18px;
|
font-size: 20px;
|
||||||
line-height: 27px;
|
line-height: 33px;
|
||||||
|
padding-right: 18px;
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
opacity: 0.6;
|
opacity: 0.6;
|
||||||
|
|
||||||
&:not(:last-child) {
|
|
||||||
padding-right: 18px;
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
a {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
color: rgb(0, 10, 56);
|
color: rgb(0, 10, 56);
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
font-weight: 700;
|
font-weight: 600;
|
||||||
background-color: rgba(0, 10, 56, 0.05);
|
background-color: rgba(0, 10, 56, 0.05);
|
||||||
margin-left: -22px;
|
margin-left: -22px;
|
||||||
padding: 0 22px;
|
padding: 0 22px;
|
||||||
// border-radius: 22px;
|
border-radius: 22px;
|
||||||
line-height: 42px;
|
line-height: 42px;
|
||||||
height: 44px;
|
height: 44px;
|
||||||
|
|
||||||
color: $neutral-900;
|
box-shadow: $box-shadow-sk;;
|
||||||
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 {
|
svg {
|
||||||
position: relative;
|
position: relative;
|
||||||
height: 28px;
|
height: 28px;
|
||||||
top: 8px;
|
top: 8px;
|
||||||
margin-left: 4px;
|
margin-left: 4px;
|
||||||
color: inherit;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -209,6 +136,9 @@ body.rwavw-custom {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (min-width: 767px) {
|
||||||
|
}
|
||||||
|
|
||||||
@media (max-width: 64em) {
|
@media (max-width: 64em) {
|
||||||
p {
|
p {
|
||||||
text-align: center !important;
|
text-align: center !important;
|
||||||
|
@ -236,18 +166,14 @@ body.rwavw-custom {
|
||||||
justify-content: flex-start;
|
justify-content: flex-start;
|
||||||
}
|
}
|
||||||
|
|
||||||
.heading-col-title {
|
h4, h5, h6 {
|
||||||
color: $accent-500;
|
opacity: 0.8;
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
font-size:16px;
|
font-size:16px;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
opacity: 0.8;
|
opacity: 0.6;
|
||||||
|
|
||||||
&:last-child {
|
|
||||||
opacity: 0.7;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -485,14 +411,10 @@ body.rwavw-custom {
|
||||||
.pure-g > .pure-u-1 {
|
.pure-g > .pure-u-1 {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
&:last-child {
|
|
||||||
padding-left: 15;
|
|
||||||
}
|
|
||||||
|
|
||||||
.heading-col-title {
|
.heading-col-title {
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
margin: 110px 0 44px;
|
margin: 110px 0 22px;
|
||||||
opacity: 0.8;
|
opacity: 0.8;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -508,44 +430,19 @@ body.rwavw-custom {
|
||||||
transform: translateX(-50%) !important;
|
transform: translateX(-50%) !important;
|
||||||
height: 88px;
|
height: 88px;
|
||||||
width: 88px;
|
width: 88px;
|
||||||
opacity: 0.7;
|
opacity: 0.4;
|
||||||
color: $accent-500;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (min-width: 64em) {
|
|
||||||
.pure-g > .pure-u-1 {
|
|
||||||
.heading-col-title {
|
|
||||||
margin: 77px 0 44px;
|
|
||||||
}
|
|
||||||
|
|
||||||
p svg {
|
|
||||||
width: 55px;
|
|
||||||
height: 55px;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.widget.rwavw-feature-extras {
|
.widget.rwavw-feature-extras {
|
||||||
> div.colors-d {
|
|
||||||
background: linear-gradient(
|
|
||||||
to right,
|
|
||||||
rgba($neutral-900, 1),
|
|
||||||
rgba($neutral-900, 0.92),
|
|
||||||
rgba($neutral-900, 1),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
p, .heading-section-title {
|
p, .heading-section-title {
|
||||||
color: inherit;
|
color: inherit;
|
||||||
color: $accent-500;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
&.lead {
|
&.lead {
|
||||||
font-weight: 600;
|
|
||||||
font-size: 22px;
|
font-size: 22px;
|
||||||
margin-bottom: 44px;
|
margin-bottom: 44px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,15 +3,15 @@ body.rwavw-custom {
|
||||||
#footer {
|
#footer {
|
||||||
// TODO set using theme - how?
|
// TODO set using theme - how?
|
||||||
color: #b0b0b0;
|
color: #b0b0b0;
|
||||||
background-color: $neutral-900;
|
background-color: #272729;
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: $accent-500;
|
color: #fff;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
opacity: 0.8;
|
opacity: 0.8;
|
||||||
|
|
||||||
&.button-social {
|
&.button-social {
|
||||||
color: $accent-500;
|
color: #fff;
|
||||||
&.btn-massive > i {
|
&.btn-massive > i {
|
||||||
font-size: 24px;
|
font-size: 24px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -78,33 +78,17 @@ body.rwavw-custom {
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
min-width: 18ch;
|
min-width: 18ch;
|
||||||
|
|
||||||
border: 3px solid $accent-500;
|
border: 3px solid #fff;
|
||||||
|
|
||||||
&:first-child {
|
&:first-child {
|
||||||
$bg-color: $accent-500;
|
color: #000;
|
||||||
|
background-color: #fff;
|
||||||
margin-bottom: 22px;
|
margin-bottom: 22px;
|
||||||
padding: 17px 18px;
|
|
||||||
color: rgba($neutral-900, 0.85);
|
|
||||||
border: 0;
|
|
||||||
background-color: $bg-color;
|
|
||||||
background: linear-gradient(
|
|
||||||
to top right,
|
|
||||||
rgba($bg-color, 0.95),
|
|
||||||
rgba($bg-color, 0.8)
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&:last-child {
|
&:last-child {
|
||||||
$bg-color: $neutral-900;
|
color: #fff;
|
||||||
|
background-color: transparent;
|
||||||
color: $accent-500;
|
|
||||||
background-color: rgba($bg-color, 0.4);
|
|
||||||
background: linear-gradient(
|
|
||||||
to top right,
|
|
||||||
rgba($bg-color, 0.45),
|
|
||||||
rgba($bg-color, 0.15)
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -194,8 +178,6 @@ body.rwavw-custom {
|
||||||
|
|
||||||
a {
|
a {
|
||||||
margin: 0 11px;
|
margin: 0 11px;
|
||||||
padding: 14px 18px;
|
|
||||||
font-size: 20px;
|
|
||||||
|
|
||||||
&:first-child {
|
&:first-child {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
|
|
|
@ -18,8 +18,11 @@ body.rwavw-custom {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.testimonials-widget-testimonial.list {
|
||||||
|
}
|
||||||
|
|
||||||
.bx-wrapper {
|
.bx-wrapper {
|
||||||
height: 285px;
|
height: 270px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.testimonials-widget {
|
.testimonials-widget {
|
||||||
|
@ -43,19 +46,15 @@ body.rwavw-custom {
|
||||||
}
|
}
|
||||||
|
|
||||||
> blockquote {
|
> blockquote {
|
||||||
font-size: 15px;
|
|
||||||
border-color: rgba($accent-500, 0.4);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
> .credit {
|
> .credit {
|
||||||
font-weight: 600;
|
|
||||||
opacity: 0.75;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width: 64em) {
|
@media (min-width: 64em) {
|
||||||
.widget.social-proof {
|
.widget.social-proof {
|
||||||
min-height: 315px;
|
min-height: 296px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
$accent-500: #fc8d00;
|
$color--accent-500: #fc8d00;
|
||||||
|
|
||||||
$neutral-900: #231f20;
|
$color--neutral-900: #231f20;
|
||||||
|
|
||||||
|
|
||||||
$box-shadow-sk: 4px 4px 6px rgba(0, 10, 56, 0.15), -4px -4px 9px rgba(#fff, 0.75);
|
$box-shadow-sk: 4px 4px 6px rgba(0, 10, 56, 0.15), -4px -4px 9px rgba(#fff, 0.75);
|
||||||
|
|
|
@ -171,53 +171,4 @@ body.rwavw-custom {
|
||||||
font-size: 60px;
|
font-size: 60px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.widget.rwavw-cta-box {
|
|
||||||
.section-cols > .pure-g {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
align-content: center;
|
|
||||||
|
|
||||||
> div {
|
|
||||||
margin: 22px 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
&:link,
|
|
||||||
&:visited {
|
|
||||||
color: $accent-500;
|
|
||||||
font-weight: bold;
|
|
||||||
font-size: 18px;
|
|
||||||
opacity: 0.8;
|
|
||||||
}
|
|
||||||
|
|
||||||
&:hover,
|
|
||||||
&:active {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
svg {
|
|
||||||
position: relative;
|
|
||||||
width: auto;
|
|
||||||
height: 29px;
|
|
||||||
top: 9px;
|
|
||||||
margin-left: 5px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (min-width: 680px) {
|
|
||||||
.section-cols > .pure-g {
|
|
||||||
flex-direction: row;
|
|
||||||
justify-content: space-around;
|
|
||||||
align-items: flex-start;
|
|
||||||
|
|
||||||
> div {
|
|
||||||
flex: 0 0 auto;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue