Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhance the Design and Styling of "Login" and "Get Started" Buttons on Feedback Page #1204

Merged
merged 2 commits into from
Nov 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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