This commit is contained in:
rayelliott 2020-06-01 20:36:25 +00:00
parent 2541c8051f
commit ddc7947713
1 changed files with 34 additions and 5 deletions

View File

@ -1,19 +1,48 @@
body.rwavw-custom { body.rwavw-custom {
.widget.rwavw-feature-sunset { .widget.rwavw-feature-sunset {
.pure-g > div:first-child { .pure-g {
padding-right: 44px; > div:first-child {
display: flex; z-index: 5;
flex-direction: column; padding-right: 44px;
justify-content: center; display: flex;
flex-direction: column;
justify-content: center;
}
> div:last-child {
z-index: 10;
}
} }
.h2, h3, h4, h5, h6 { .h2, h3, h4, h5, h6 {
position: relative;
font-weight: 400; font-weight: 400;
text-align: right !important; text-align: right !important;
color: #000a38; color: #000a38;
margin-top: 0; margin-top: 0;
margin-bottom: 44px; margin-bottom: 44px;
&::before {
$color: rgb(3, 41, 109);
z-index: -1;
content: '';
display: block;
position: absolute;
width: 230%;
height: 300%;
top: 48px;
left: -22px;
border-radius: 3px;
// background-color: rgba(#000, 0.05);
background-image: linear-gradient(
140deg,
rgba($color, 0.01),
rgba($color, 0.05)
);
}
} }
p { p {