Skip to content

Commit

Permalink
Merge pull request #715 from ANKeshri/text-and-size-of-message-box-in…
Browse files Browse the repository at this point in the history
…-contact

fix message box , text in contact us add hovering effect in cards of about us and emergency add proper link to doctors available and user review
  • Loading branch information
Anishkagupta04 authored Jul 3, 2024
2 parents 37c74fc + 7b07021 commit 9957bfe
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 9 deletions.
12 changes: 6 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -669,17 +669,17 @@ <h1 class="about-us-heading">About Us</h1>

<div class="row no-gutters" >

<div class="col-lg-3 col-md-6 d-md-flex align-items-md-stretch">
<div class="col-lg-3 col-md-6 d-md-flex align-items-md-stretch" id="abc">
<div class="count-box">
<i class="fas fa-user-md"></i>
<span data-purecounter-start="0" data-purecounter-end="95" data-purecounter-duration="1"
class="purecounter"></span>
<p><strong>Doctors Available</strong> <br><br>Doctors listed on our website.</p><br>
<a href="">Find out more &raquo;</a>
<a href="#doctors">Find out more &raquo;</a>
</div>
</div>

<div class="col-lg-3 col-md-6 d-md-flex align-items-md-stretch">
<div class="col-lg-3 col-md-6 d-md-flex align-items-md-stretch" id="abc">
<div class="count-box">
<i class="fas fa-bed"></i>
<span data-purecounter-start="0" data-purecounter-end="36" data-purecounter-duration="1"
Expand All @@ -689,7 +689,7 @@ <h1 class="about-us-heading">About Us</h1>
</div>
</div>

<div class="col-lg-3 col-md-6 d-md-flex align-items-md-stretch">
<div class="col-lg-3 col-md-6 d-md-flex align-items-md-stretch" id="abc">
<div class="count-box">
<i class="fas fa-flask-vial"></i>
<span data-purecounter-start="0" data-purecounter-end="23" data-purecounter-duration="1"
Expand All @@ -699,13 +699,13 @@ <h1 class="about-us-heading">About Us</h1>
</div>
</div>

<div class="col-lg-3 col-md-6 d-md-flex align-items-md-stretch">
<div class="col-lg-3 col-md-6 d-md-flex align-items-md-stretch" id="abc">
<div class="count-box">
<i class="fas fa-trophy"></i>
<span data-purecounter-start="0" data-purecounter-end="1250" data-purecounter-duration="1"
class="purecounter"></span>
<p><strong>User Reviews</strong><br> <br>Over 1K positive reviews.</p><br>
<a href="">Find out more &raquo;</a>
<a href="#test">Find out more &raquo;</a>
</div>
</div>

Expand Down
11 changes: 8 additions & 3 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,9 @@ h6 {
}

.appointment-btn:hover {
background: #55a5ea;
z-index: -1;
color: #fff;
background-color: green;
color: white;
}

@media (max-width: 768px) {
Expand Down Expand Up @@ -1213,6 +1213,7 @@ section {
border-radius: 10px;
box-shadow: none;
font-size: 14px;
color: #000;
}

.contact .php-email-form input {
Expand Down Expand Up @@ -1630,7 +1631,7 @@ footer {
}

.form-control {
width: 50%;
width: 100%;
/* Full width */
padding: 10px;
border: 1px solid #ccc;
Expand Down Expand Up @@ -1960,4 +1961,8 @@ footer {
text-align: center;
padding: 1rem 0.5rem 2rem 0.5rem;
}
}
#abc :hover{
background: #55a5ea;
border-color: #3fbbc0;
}

0 comments on commit 9957bfe

Please sign in to comment.