update
This commit is contained in:
parent
d630440356
commit
2d1822a53a
|
@ -3,6 +3,8 @@ body.rwavw-custom {
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
|
|
||||||
#home {
|
#home {
|
||||||
|
$shade-color: #000;
|
||||||
|
|
||||||
position: relative;
|
position: relative;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
@ -13,9 +15,9 @@ body.rwavw-custom {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding: 96px 90px 90px !important;
|
padding: 96px 90px 90px !important;
|
||||||
|
|
||||||
text-shadow: 0 0 8em #000,
|
text-shadow: 0 0 8em $shade-color,
|
||||||
0 0 2em rgba(#000, 0.57),
|
0 0 2em rgba($shade-color, 0.57),
|
||||||
0 0 0.5em rgba(#000, 0.1);
|
0 0 0.5em rgba($shade-color, 0.1);
|
||||||
|
|
||||||
&::before {
|
&::before {
|
||||||
content: '';
|
content: '';
|
||||||
|
@ -26,7 +28,22 @@ body.rwavw-custom {
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
|
|
||||||
background-color: rgba(#000, 0.2);
|
opacity: 0.5;
|
||||||
|
|
||||||
|
background-color: rgba($shade-color, 0.2);
|
||||||
|
background: linear-gradient(
|
||||||
|
to bottom,
|
||||||
|
rgba($shade-color, 0.5),
|
||||||
|
rgba($shade-color, 0.5) 120px,
|
||||||
|
rgba($shade-color, 0.2)
|
||||||
|
),
|
||||||
|
linear-gradient(
|
||||||
|
to top,
|
||||||
|
rgba($shade-color, 0.3),
|
||||||
|
rgba($shade-color, 0.3) 160px,
|
||||||
|
rgba($shade-color, 0)
|
||||||
|
);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
> .section-top {
|
> .section-top {
|
||||||
|
@ -101,6 +118,8 @@ body.rwavw-custom {
|
||||||
|
|
||||||
.header-details {
|
.header-details {
|
||||||
text-transform: none;
|
text-transform: none;
|
||||||
|
text-shadow: 0 0 1.5em $shade-color,
|
||||||
|
0 0 1em rgba($shade-color, 0.6);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -135,10 +154,24 @@ body.rwavw-custom {
|
||||||
#home {
|
#home {
|
||||||
padding: 55px 11px 55px !important;
|
padding: 55px 11px 55px !important;
|
||||||
|
|
||||||
|
> .section-cols {
|
||||||
|
> .pure-g {
|
||||||
|
justify-content: space-around;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
|
margin: 77px 0 55px;
|
||||||
font-size: 90px;
|
font-size: 90px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
font-size: 22px;
|
||||||
|
font-weight: 400;
|
||||||
|
line-height: 1.2;
|
||||||
|
margin-bottom: 22px;
|
||||||
|
}
|
||||||
|
|
||||||
.hero-cta {
|
.hero-cta {
|
||||||
margin: 66px 0 66px;
|
margin: 66px 0 66px;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
|
|
Loading…
Reference in New Issue