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

fix support and donate #1834

Merged
merged 1 commit into from
Jun 13, 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
2 changes: 1 addition & 1 deletion blog.html
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@
</header>

<!---Blogs container-->
<section class="main-body-section bg-blog bg-white-200">
<section class="main-body-section bg-blog bg-opacity-90 bg-white-200">
<div class="container max-w-5xl mx-auto">
<img src="./Assets/cats-dogs.jpg" class="mt-32" />
<h1
Expand Down
2 changes: 1 addition & 1 deletion donate1.html
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ <h1 class="text-4xl text_2 text-center md:text-left md:ml-12 uppercase font-ser
</li>
<li>
<a id="theme-toggle">
<i class="ri-sun-line turn-yellow-hover light-theme" id="switch"></i>
<i class="ri-sun-line turn-red-hover light-theme" id="switch"></i>
</a>
</li>
<!-- google translate -->
Expand Down
2 changes: 1 addition & 1 deletion light-dark-theme.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ let elements = [
"bg-yellow-900"
),
new Element(["bg_3"], "bg-blue-600", "bg-blue-200"),
new Element(["bg-blog"], "bg-white-200", "bg-amber-700"),
new Element(["bg-blog", "bg-donate"], "bg-white-200", "bg-amber-700"),
new Element(["mission-1"], "mission-dark", "mission-light"),
new Element(["mission-2"], "mission-dark", "mission-light"),
new Element(["navbar-item"], "turn-red-hover", "turn-yellow-hover"),
Expand Down
6 changes: 3 additions & 3 deletions navbar.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.bg-header-offwhite {
--tw-bg-opacity: 0.5;
background-color: rgb(237 224 211);
background-color: #f9d6b7;
}

.text-custom-heading {
Expand All @@ -14,11 +14,11 @@
transition: color .3s;
}

#switch.light-theme {
#switch.dark-theme {
color: rgb(255, 255, 255);
}

#switch.dark-theme {
#switch.light-theme {
color: rgb(62, 62, 62);;
}

Expand Down
13 changes: 8 additions & 5 deletions volunteer.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,16 @@
<style>
#survey-form{
/* border: 1px solid black; */
padding-top: 50px;
padding-bottom: 50px;
border-radius: 20px;
margin: 50px;
/* width: 1200px; */
/* background-color: black; */
}

#survey-form input::placeholder{
color: rgba(0, 0, 0, 0.481);
}
</style>
</head>

Expand Down Expand Up @@ -132,9 +135,9 @@

<section class="text-gray-600 body-font relative bg-[url('Assets/Images/pet-don.jpg')] bg-center bg-no-repeat
bg-cover">
<div class="container px-5 py-24 mx-auto card backdrop-blur-sm" style="margin-top: 10vh">
<div class="container px-5 py-24 mx-auto bg-donate bg-opacity-80 card backdrop-blur-sm" style="margin-top: 10vh">
<div class="flex flex-col text-center w-full mb-12">
<h1 class="sm:text-3xl text-2xl font-medium title-font mb-4 text-gray-900">
<h1 class="sm:text-3xl text-2xl donate-h1 font-medium title-font mb-4 text-gray-900">
Thanks for showing your support
</h1>
<p class="sm:text-3xl text-2xl font-medium title-font mb-4 text-gray-90">
Expand Down Expand Up @@ -196,7 +199,7 @@ <h1 class="sm:text-3xl text-2xl font-medium title-font mb-4 text-gray-900">
<div class="relative">
<label for="number" class="leading-7 text-sm text-gray-900">Contact Number</label>

<input type="text" id="number" name="number" placeholder="+91 0123456789"
<input type="text" id="number" name="number" placeholder="+91 01234 56789"
class="w-full bg-gray-100 bg-opacity-50 rounded border border-gray-300 focus:border-indigo-500 focus:bg-white focus:ring-2 focus:ring-indigo-200 text-base outline-none text-gray-700 py-1 px-3 leading-8 transition-colors duration-200 ease-in-out"
oninput="this.value = this.value.replace(/[^0-9\+\.]/g, '').replace(/(\..*)\./g, '$1');"
required />
Expand All @@ -206,7 +209,7 @@ <h1 class="sm:text-3xl text-2xl font-medium title-font mb-4 text-gray-900">

<div class="p-2 w-full">
<input type="checkbox" name="check" id="check" required>
<span class="p-1 font-medium text-gray-900">
<span class="leading-7 p-1 font-medium text-gray-900">
I've read and agree to the Terms and Conditions for volunteering this organisation.
</span>
</div>
Expand Down
Loading