Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
shuhaki authored Jun 7, 2024
2 parents abc654c + 2cfc93d commit 23f4dbf
Show file tree
Hide file tree
Showing 103 changed files with 11,362 additions and 813 deletions.
5 changes: 5 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions .idea/Food-ordering-website.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

55 changes: 34 additions & 21 deletions Css-files/ContactUpdate.css
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@ body {

h1 {
font-size: 58px;
font-weight: 900;
font-weight: bolder;
margin-bottom: 1rem;
color: var(--white-color);
text-shadow: 1px 0 6px #000;
color:white;
text-shadow: 3px 0 6px #000;
}

h1 span {
Expand All @@ -97,7 +97,7 @@ h1 span {

h2 {
font-weight: 700;
font-size: 2rem;
font-size: 3rem;
text-transform: capitalize;
font-family: var(--secondry-font);
color: var(--secondry-color);
Expand All @@ -119,9 +119,10 @@ h5 {
color: var(--black-color);
text-transform: capitalize;
font-family: var(--secondry-font);
font-size: 1rem;
font-weight: 700;
font-size: 1.4rem;
font-weight: bolder;
margin-bottom: 0.5rem;
text-shadow: 0 0 12px white;
}

p {
Expand All @@ -138,7 +139,7 @@ p {
line-height: 1.5625rem;
background-color: rgb(138, 37, 37);
;
border: 0.1875rem solid yellow;
border: 0.1875rem solid rgb(10, 10, 9);
color: var(--white-color);
font-size: 0.9375rem;
font-weight: 600;
Expand All @@ -152,8 +153,8 @@ p {
}

.main-btn:hover {
background-color: transparent;
color: var(--primary-color);
background-color: white;
color: black;
}

.wrapper {
Expand Down Expand Up @@ -398,12 +399,14 @@ nav {
*/

.explore-food .card{

background-color:transparent;
border-radius: 0.9375rem;
}

.explore-food .card :hover {
transform: scale(0.99);
transform: scale(1.01);
transition:all .4s ease-in;
}

.explore-food .card img {
Expand Down Expand Up @@ -440,16 +443,17 @@ nav {
}

.testimonial-section h2 {
color: var(--black-color);
color: red;
}

.testimonial-section .carousel-item {
margin-top: 3rem;
padding: 10rem 3.125rem;
background-color: white;
color: white;
background-color: rgb(251, 251, 251);
border-radius: 0.9375rem;
text-align: center;
border: 4px solid brown;
border: 4px solid brown;
}

.testimonial-section .carousel-caption img {
Expand All @@ -459,9 +463,9 @@ nav {
}

.testimonial-section .carousel-caption p {
font-size: 1.125rem;
font-size:1.67rem;
font-weight : bold;
line-height: 1.5625rem;
font-weight: 300;
color: var(--black-color);
padding: 0 11% 0.625rem;
}
Expand Down Expand Up @@ -591,22 +595,31 @@ textarea {

.fa-facebook:hover {
background-color: #3B5998;
color: white;
color: white !important;
}

.fa-instagram:hover {
background-color: #D62976;
color: white;
color: white !important;
}

.fa-twitter:hover {
background-color: #00B6F1;
color: white;
.fa-x-twitter:hover {
background-color: black;
color: white !important;
}

.fa-github:hover {
background-color: #040204;
color: white;
color: white !important;
}

.fa-discord:hover {
background-color: #5865F2;
color: white !important;
}
.fa-linkedin:hover{
background-color: #0077b5;
color: white !important;
}

.copyright {
Expand Down
65 changes: 38 additions & 27 deletions Css-files/cart.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
* {
box-sizing: border-box;
font-family: "Bree Serif", serif;
}

.navigbar {
top: 40px;
}
.mainhead {
text-align: center;
padding-top: 50px;
padding-bottom: 20px;
/*padding-bottom: 50px;*/
}
.cart-section {
align-items: center;
padding: 25px 15px;
Expand Down Expand Up @@ -40,10 +49,12 @@

.detail {
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
width: 60%;
gap: 10px;
}

.quantity-wrapper {
Expand Down Expand Up @@ -112,33 +123,33 @@
max-width: 500px;
width: 100%;
}

HEAD .empty-cart h4,
.empty-cart button {
.butt {
color: white;
}

.empty-cart h4,
.empty-cart button {
margin: 20px;
}

input,
textarea {
.empty-cart h4, .empty-cart button {
margin: 20px;
}
input,
textarea {
width: 100%;
}
.coupen {
position: fixed;
top: 0;
left: 0;
width: 100%;
/* padding: 10px; */
padding: 10px;
height: 40px;
background-color: brown;
color: aliceblue;
z-index: 2000;
}
@media all and (max-width: 768px) {
.cart {
width: 100%;
}

@media all and (max-width: 768px) {
.cart {
width: 100%;
}

.detail {
flex-direction: column;
justify-content: left;
align-items: flex-start;
gap: 5px;
}
.detail {
flex-direction: column;
justify-content: left;
align-items:flex-start;
gap: 5px;
}
}
113 changes: 113 additions & 0 deletions Css-files/cateringservices.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,113 @@
* {
font-family: "Bree Serif", serif;
}

.mainhead:hover h1 {
color: rgb(138, 37, 37);
}

#active-page {
color: #dc3545;
border-bottom: 2px solid #dc3545;
}

@keyframes gradient-animation {
0% {
background-position: 0% 50%;
}

50% {
background-position: 100% 50%;
}

100% {
background-position: 0% 50%;
}
}

.head_container_service {
height: fit-content;
}

.head_container_service h1 {
text-align: center;
padding: 3rem;
letter-spacing: 3px;
color: brown;
}

.first_cont {
flex-wrap: wrap;
}

.first_cont .items {
height: 28rem;
width: 280px !important;
max-width: 320px !important;
/* padding-bottom: 2rem; */
}

.items {
overflow: hidden;
}

.items h2 {
padding: 1rem;
}
.items img {
transition: 0.3s;
z-index: 12;
}

.items li {
padding: 7px;
list-style: none;
}

.items .container {
width: 80%;
padding-left: 2rem;
}
.items:hover img {
transform: scale(1.1);
}

.but {
transition: 0.5s;
cursor: pointer;
margin-top: 1rem;
}

.but:hover {
background-color: rgb(138, 37, 37);
color: white;
transform: translateX(10px);
}

.second_cont {
flex-wrap: wrap;
}

.deals {
flex: 1 1 300px;
flex-wrap: wrap;
align-items: center;
justify-content: center;
transition: 0.3s;
}

.deals:hover {
transform: translateY(-10px);
background-color: rgb(138, 37, 37);
color: white;
border-color: white;
}

input,
textarea {
width: 100%;
}

#butt:hover {
background-color: rgb(196, 89, 89);
}
File renamed without changes
Loading

0 comments on commit 23f4dbf

Please sign in to comment.