Skip to content

Commit

Permalink
Merge pull request #1204 from KhushiChauhan8/buttons
Browse files Browse the repository at this point in the history
Enhance the Design and Styling of "Login" and "Get  Started" Buttons on Feedback Page
  • Loading branch information
vimistify authored Nov 8, 2024
2 parents ea22b3e + 81ccb8f commit 8618b9d
Show file tree
Hide file tree
Showing 2 changed files with 99 additions and 3 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
53 changes: 53 additions & 0 deletions team.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,57 @@
<script src="https://cdn.gtranslate.net/widgets/latest/float.js" defer></script>
<!--Updated to latest version-->
<style>

/* Font size and padding of buttons */
.buttons .login,
.buttons .get-started,
.dark-mode-toggle {
font-size: 18px;
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);
}

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

}

/* font size of button */
.buttons .login,
.buttons .get-started,
Expand All @@ -26,6 +77,7 @@
/* Adjust padding for better appearance */
}


/* more addition for dark mode theme */

.dark-mode .logo img {
Expand Down Expand Up @@ -309,6 +361,7 @@
<button class="light-dark-btn dark-mode-toggle" id="dark-mode-toggle">
<i class="fa-solid fa-moon"></i>
</button>

</div>


Expand Down

0 comments on commit 8618b9d

Please sign in to comment.