HTML
xxxxxxxxxx
1
<!-- Container for demo purpose -->
2
<div class="container my-5 py-5">
3
4
<!-- Section: Design Block -->
5
<section class="mb-10 background-radial-gradient">
6
<style>
7
.background-radial-gradient {
8
background-color: hsl(218, 41%, 15%);
9
background-image: radial-gradient(
10
650px circle at 0% 0%,
11
hsl(218, 41%, 35%) 15%,
12
hsl(218, 41%, 30%) 35%,
13
hsl(218, 41%, 20%) 75%,
14
hsl(218, 41%, 19%) 80%,
15
transparent 100%
16
),
17
radial-gradient(
18
1250px circle at 100% 100%,
19
hsl(218, 41%, 45%) 15%,
20
hsl(218, 41%, 30%) 35%,
21
hsl(218, 41%, 20%) 75%,
22
hsl(218, 41%, 19%) 80%,
23
transparent 100%
24
);
25
}
26
</style>
27
28
<div class="container px-4 py-5 px-md-5 text-center text-lg-start">
29
<div class="row gx-lg-5 align-items-center my-5 my-lg-0">
30
<div class="col-lg-6 mb-5 mb-lg-0">
31
<h1
32
class="mb-5 display-3 fw-bold ls-tight"
33
style="color: hsl(218, 81%, 95%)"
34
>
35
Are you ready <br />
36
<span style="color: hsl(218, 81%, 75%)">for an adventure?</span>
37
</h1>
38
<p class="text-white lead mb-xl-0">
39
Lorem ipsum dolor sit amet consectetur adipisicing elit. Minima
40
officia consequatur adipisci tenetur repudiandae rerum quos.
41
</p>
42
</div>
43
44
<div class="col-lg-6">
45
<!-- THIS ONE, THIS ONE, THIS ONE, THIS ONE! -->
46
<div id="this">
47
48
</div>
49
</div>
50
</div>
51
</div>
52
</section>
53
<!-- Section: Design Block -->
54
55
</div>
56
<!-- Container for demo purpose -->
CSS
xxxxxxxxxx
1
body {
2
background-color: hsl(0, 0%, 98%)
3
}
4
5
#this {
6
background-color: red;
7
}
JS
1
1
Console errors: 0