xxxxxxxxxx
1
<template>
2
<section class="intro">
3
<div class="bg-image h-100" style="
4
background-image: url(https://mdbootstrap.com/img/Photos/new-templates/search-box/img5.jpg);
5
">
6
<div class="mask d-flex align-items-center h-100" style="background-color: rgba(0,0,0, 0.5);">
7
<MDBContainer>
8
<p class="h2 mb-4 text-white">The best free stock photos & videos <br> shared by
9
talented creators.</p>
10
<MDBCard>
11
<MDBCardBody class="p-4">
12
<MDBRow>
13
<MDBCol col="12" class="mb-4">
14
<MDBInput inputGroup="lg" wrapperClass="flex-fill" class="form-control-lg" label="Search for free photos and videos">
15
<MDBBtn color="primary" class="px-4 rounded-right">
16
<i class="fas fa-search" style="font-size: 0.75rem"></i>
17
</MDBBtn>
18
</MDBInput>
19
<div class="form-outline">
20
<div class="form-helper pt-2"><span class="font-weight-bold">Suggested:</span>
21
<a href="#!" class="text-black-50"> spring, </a>
22
<a href="#!" class="text-black-50">natural, </a>
23
<a href="#!" class="text-black-50">outdoors, </a>
24
<a href="#!" class="text-black-50">forest, </a>
25
<a href="#!" class="text-black-50">cactus, </a>
26
<a href="#!" class="text-black-50">flowers, </a>
27
<a href="#!" class="text-black-50">more</a>
28
</div>
29
30
</div>
31
</MDBCol>
32
</MDBRow>
33
</MDBCardBody>
34
</MDBCard>
35
</MDBContainer>
36
</div>
37
</div>
38
</section>
39
</template>
xxxxxxxxxx
1
<style>
2
#app {
3
font-family: Roboto, Helvetica, Arial, sans-serif;
4
}
5
6
html,
7
body,
8
.intro {
9
height: 50vh;
10
}
11
12
.rounded-right {
13
border-top-right-radius: 0.3rem !important;
14
border-bottom-right-radius: 0.3rem !important;
15
}
16
</style>
xxxxxxxxxx
1
<script>
2
import { MDBContainer, MDBCard, MDBCardBody, MDBRow, MDBCol, MDBInput, MDBBtn } from "mdb-vue-ui-kit";
3
4
export default {
5
name: "App",
6
components: {
7
MDBContainer,
8
MDBCard,
9
MDBCardBody,
10
MDBRow,
11
MDBCol,
12
MDBInput,
13
MDBBtn
14
},
15
};
16
</script>
Console errors: 0