Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
cfunkz authored Mar 23, 2024
1 parent 05794f6 commit 9b5d947
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 76 deletions.
20 changes: 1 addition & 19 deletions design.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
height: 100vh;
padding: 70px 0 0 0;
text-align: center;
align-items: center;
}
.carousel-item {
max-height: 100vh;
Expand Down Expand Up @@ -35,29 +36,10 @@ footer {
.navbar-nav .nav-link {
transition: color 0.3s ease;
color: #FFFFFF; /* Set font color to white */
font-weight: bold; /* Make font bold */
}

.navbar-nav .nav-link:hover {
border-radius: 5px;
background-color: #0A2949; /* Change background color to black on hover */
color: #ffffff;
}
.card {
background-color: #0A2949;
color: #FFFFFF;
border: 1px solid #0A2949;
transition: transform 0.3s ease;
}

.card:hover {
transform: translateY(-5px);
}

.card-title {
color: #FFFFFF;
}

.card-text {
color: #CCCCCC;
}
58 changes: 1 addition & 57 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -72,65 +72,9 @@ <h5>Choose from many options</h5>

<!-- SERVICES -->
<div id="services" class="section">
<h2>Services</h2>
<div class="container">
<div class="row">
<!-- Service Card 1 -->
<div class="col-md-6 col-lg-3 mb-4">
<div class="card">
<img src="img/service1.jpg" class="card-img-top" alt="Service 1 Image">
<div class="card-body">
<h5 class="card-title">Service 1</h5>
<p class="card-text">Description of Service 1.</p>
<a href="#" class="btn btn-primary">Learn More</a>
<a href="#" class="btn btn-success">Purchase</a>
</div>
</div>
</div>

<!-- Service Card 2 -->
<div class="col-md-6 col-lg-3 mb-4">
<div class="card">
<img src="img/service2.jpg" class="card-img-top" alt="Service 2 Image">
<div class="card-body">
<h5 class="card-title">Service 2</h5>
<p class="card-text">Description of Service 2.</p>
<a href="#" class="btn btn-primary">Learn More</a>
<a href="#" class="btn btn-success">Purchase</a>
</div>
</div>
</div>

<!-- Service Card 3 -->
<div class="col-md-6 col-lg-3 mb-4">
<div class="card">
<img src="img/service3.jpg" class="card-img-top" alt="Service 3 Image">
<div class="card-body">
<h5 class="card-title">Service 3</h5>
<p class="card-text">Description of Service 3.</p>
<a href="#" class="btn btn-primary">Learn More</a>
<a href="#" class="btn btn-success">Purchase</a>
</div>
</div>
</div>

<!-- Service Card 4 -->
<div class="col-md-6 col-lg-3 mb-4">
<div class="card">
<img src="img/service4.jpg" class="card-img-top" alt="Service 4 Image">
<div class="card-body">
<h5 class="card-title">Service 4</h5>
<p class="card-text">Description of Service 4.</p>
<a href="#" class="btn btn-primary">Learn More</a>
<a href="#" class="btn btn-success">Purchase</a>
</div>
</div>
</div>
</div>
</div>
<h2>Services</h2>
</div>


<!-- QUOTES -->
<div id="quote" class="section">
<h2>Get A Quote</h2>
Expand Down

0 comments on commit 9b5d947

Please sign in to comment.