xxxxxxxxxx
1
<div class="container my-5">
2
3
4
<!-- Section: Block Content -->
5
<section class="dark-grey-text text-center">
6
7
<h3 class="text-center font-weight-bold mb-4 pb-2">Our best projects</h3>
8
<p class="text-center text-muted w-responsive mx-auto mb-5">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Fugit, error amet numquam iure provident voluptate esse quasi, veritatis totam voluptas nostrum quisquam eum porro a pariatur veniam.</p>
9
10
<!-- First row -->
11
<div class="row">
12
13
<!-- First column -->
14
<div class="col-lg-4 col-md-12 mb-4">
15
16
<div class="view overlay z-depth-1">
17
<img src="https://mdbootstrap.com/img/Photos/Others/img3.jpg" class="img-fluid" alt="Sample image">
18
<div class="mask flex-center blue-gradient-rgba">
19
<a class="btn btn-outline-white btn-rounded">see more</a>
20
</div>
21
</div>
22
<p class="text-uppercase text-center text-muted mt-4 mb-0">Lorem ipsum dolor sit</p>
23
24
</div>
25
<!-- First column -->
26
27
<!-- Second column -->
28
<div class="col-lg-4 col-md-6 mb-4">
29
30
<div class="view overlay z-depth-1">
31
<img src=" https://mdbootstrap.com/img/Photos/Others/img4.jpg" class="img-fluid" alt="Sample image">
32
<div class=" mask flex-center blue-gradient-rgba">
33
<a class="btn btn-outline-white btn-rounded">see more</a>
34
</div>
35
</div>
36
<p class="text-uppercase text-center text-muted mt-4 mb-0">Lorem ipsum dolor sit</p>
37
38
</div>
39
<!-- Second column -->
40
41
<!-- Third column -->
42
<div class="col-lg-4 col-md-6 mb-4">
43
44
<div class="view overlay z-depth-1">
45
<img src="https://mdbootstrap.com/img/Photos/Others/img8.jpg" class="img-fluid" alt="Sample image">
46
<div class="mask flex-center blue-gradient-rgba">
47
<a class="btn btn-outline-white btn-rounded">see more</a>
48
</div>
49
</div>
50
<p class="text-uppercase text-center text-muted mt-4 mb-0">Lorem ipsum dolor sit</p>
51
52
</div>
53
<!-- Third column -->
54
55
</div>
56
<!-- First row -->
57
58
</section>
59
<!-- Section: Block Content -->
60
61
62
</div>
xxxxxxxxxx
1
.mask.rgba-gradient {
2
background: -webkit-linear-gradient(45deg,rgba(29,236,197,.7),rgba(91,14,214,.7) 100%);
3
background: -webkit-gradient(linear,45deg,from(rgba(29,236,197,.7)),to(rgba(91,14,214,.7)));
4
background: -o-linear-gradient(45deg,rgba(29,236,197,.7),rgba(91,14,214,.7) 100%);
5
background: linear-gradient(to 45deg,rgba(29,236,197,.7),rgba(91,14,214,.7) 100%);
6
}
1
1
Console errors: 0