Skip to content

Commit

Permalink
Enhance the Design and Styling of Login and Get Started Buttons on Fe…
Browse files Browse the repository at this point in the history
…edback Page
  • Loading branch information
KhushiChauhan8 committed Nov 8, 2024
1 parent ae751b6 commit b2f988a
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 5 deletions.
49 changes: 46 additions & 3 deletions Feedback.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,52 @@
.dark-mode-toggle {
font-size: 18px;
/* Increase font size */
padding: 10px 15px;
/* Adjust padding for better appearance */
}
padding: 10px 30px;
transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Container spacing from the top */
.buttons {
margin-top: 20px;
display: flex;
gap: 30px;
}

/* Login button styling */
.login {
background-color: blue;
color: white;
border: none;
border-radius: 5px;
padding: 10px 50px;
text-decoration: none;
}

/* Get Started button styling */
.get-started {
background-color: blue;
color: white;
border: none;
border-radius: 5px;
padding: 10px 50px;
text-decoration: none;

}

/* Login button hover effect */
.login:hover {
background-color: darkblue;
transform: scale(1.05);
color: white;
}

/* Get Started button hover effect */
.get-started:hover {
background-color: darkblue; /* Darker shade for hover effect */
transform: scale(1.05); /* Slightly enlarge the button */
color: white;

}


/* dark mode toggle button styling */
Expand Down
5 changes: 3 additions & 2 deletions team.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
.buttons {
margin-top: 20px;
display: flex;
gap: 15px;
gap: 30px;
}

/* Login button styling */
Expand All @@ -46,6 +46,7 @@
background-color: blue;
color: white;
border: none;
border-radius: 5px;
padding: 10px 50px;
text-decoration: none;

Expand Down Expand Up @@ -347,7 +348,7 @@
<a href="up.html" class="get-started">Get started</a>
<button class="light-dark-btn dark-mode-toggle" id="dark-mode-toggle">
<i class="fa-solid fa-moon"></i>
</button>
</button>

</div>
<img src="images/logo2-w.webp" alt="Ambulance Monitoring System Logo" style="width: 80px; height: auto; padding-top: 2em;" />
Expand Down

0 comments on commit b2f988a

Please sign in to comment.