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

UI Enhancement (Resolved) #1617

Closed
wants to merge 5 commits into from
Closed
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
24 changes: 20 additions & 4 deletions Html-files/cart.html
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,23 @@
top:-6px;

}
#donateBtn{
cursor: pointer;
width:150px;
text-wrap: nowrap;
border-radius: 30px;
outline: none;
border: none;

padding:5px;
height:50px;
background-color: greenyellow;
align-self: center;
text-align: center;
}
#donateBtn:hover{
background-color: lightgreen;
}
.price {
margin-top: 5px;
}
Expand Down Expand Up @@ -502,10 +518,7 @@ <h2 class="playfair">Payment Info</h2>
<!-- id="orderNowButton" class="butt"-->


<!--Adding donate button-->
<div class="donate-button">
<button id="donateBtn">Donate Now</button>
</div>




Expand All @@ -530,6 +543,9 @@ <h2 class="playfair">Payment Info</h2>
</div>
</div>
</p>
<!--Adding donate button-->

<button id="donateBtn">Donate Now</button>

</div>
</section>
Expand Down
8 changes: 6 additions & 2 deletions Html-files/donation-form.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Donation Form</title>

<style>
Expand Down Expand Up @@ -89,7 +90,11 @@
</style>
</head>
<body>
<a href="cart.html">
<i class="fa fa-close" style="font-size:48px;color:darkred;cursor:pointer;"></i>
</a>
<h1>Donate Now</h1>

<form id="donationForm" method="POST" >

<label for="name">Name:</label>
Expand All @@ -103,8 +108,7 @@ <h1>Donate Now</h1>

<button type="submit" >Submit Donation</button>
</form>


New changes are added
<div class="circle-container">
<div class="circle"></div>
<div class="circle"></div>
Expand Down
Binary file modified Images/navbar/sun.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 4 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -307,9 +307,12 @@
<li><a class="dropdown-item" href="#"><i class="fa-solid fa-headset"></i> Customer Support</a></li>
<li><a class="dropdown-item" href="#FAQ"><i class="fa-solid fa-question"></i> FAQS</a></li>
</ul>
</li>

<li class="nav-item, nav-items">


<!-- <li class="nav-item, nav-items">

<a class="nav-link" href="Html-files/contact.html"><i class="fa-solid fa-phone"></i>Contact Us</a>


Expand Down
35 changes: 15 additions & 20 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -52,30 +52,24 @@ body {

/*Scrollbar Style*/

::-webkit-scrollbar-track
{
background-color: white;
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.6);
/* background-image: linear-gradient(to top, rgb(246, 10, 10) , rgb(248, 145, 49), rgb(236, 239, 56)); */
background-color: white;
}




::-webkit-scrollbar
{
width: 10px;

background-color: light red;
::-webkit-scrollbar {
width: 12px;
}

::-webkit-scrollbar-thumb
{
height: 175px;
background: radial-gradient(circle at 10% 20%, rgb(205, 33, 42) 0%, rgb(236, 95, 5) 90%);
::-webkit-scrollbar-thumb {
background-color: #ff0707;
border-radius: 10px;
border: 0.3px solid white;
background-image: -webkit-linear-gradient( 90deg, rgb(20, 21, 12) 0%, rgb(0, 0, 0) 25%, transparent 100%, rgb(247, 4, 4) 75%, transparent);
}



/* Home carousel/slider */

#homeSlider .homeimg {
Expand Down Expand Up @@ -418,8 +412,6 @@ body {
background-color: var(--btn-hover-background-color);
}



.menu_items .items {
text-align: center;
max-height: 370px;
Expand Down Expand Up @@ -1189,7 +1181,11 @@ font-size: 24px;
}
.faq-container {
padding: 20px;
<<<<<<< HEAD
}
=======
}
>>>>>>> upstream/new
.faq-container h1 {
font-size: 2rem;
}
Expand All @@ -1199,4 +1195,3 @@ font-size: 24px;
.faq-container p {
font-size: 1rem;
}

Loading