-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.php
44 lines (44 loc) · 1.15 KB
/
home.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<style>
.car-cover{
width:10em;
}
.car-item .col-auto{
max-width: calc(100% - 12em) !important;
}
.car-item:hover{
transform:translate(0, -4px);
background:#a5a5a521;
}
.banner-img-holder{
height:25vh !important;
width: calc(100%);
overflow: hidden;
}
.banner-img{
object-fit:scale-down;
height: calc(100%);
width: calc(100%);
transition:transform .3s ease-in;
}
.car-item:hover .banner-img{
transform:scale(1.3)
}
.welcome-content img{
margin:.5em;
}
</style>
<div class="col-lg-12 py-5">
<div class="contain-fluid">
<div class="card card-outline card-navy shadow rounded-0">
<div class="card-body rounded-0">
<div class="container-fluid">
<h3 class="text-center">Welcome</h3>
<hr>
<div class="welcome-content">
<?php include("welcome.html") ?>
</div>
</div>
</div>
</div>
</div>
</div>