Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
fivetran-satvikpatil authored Oct 3, 2021
1 parent ca44f32 commit d31cfa1
Show file tree
Hide file tree
Showing 16 changed files with 498 additions and 0 deletions.
105 changes: 105 additions & 0 deletions FriendsMeal/css/phone.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
/* Navigation Section */

#navbar{
flex-direction: column;
font-size: 1.2rem;
}

#navbar::before{
height: 170%;
}

#navbar ul{
position: relative;
top: -16px;
}

#navbar ul li a{
font-size: 1.1rem;
padding: 3px 5px;
padding-bottom: 6px;
}

#logo img{
height: 45px;
margin: -15px -26px;
}

/* Home Section */

#home{
height: 360px;
padding: 80px 8px;
}

#home:before{
height: 585px;
}

#home p{
font-size: 1rem;
}

/* Service Section */

#services{
flex-direction: column;
}

#services .box {
box-sizing: border-box;
/* border: 2px solid red; */
padding: 46px 18px;
margin: 12px 10px;
border-radius: 25px;
background-color: rgb(202, 199, 199);
}

#services .box img{
height: 5rem;
padding: 4px 20px;
}

/* Client Section */

#clients{
flex-wrap: wrap;

}

#client-selection::before{
height: 100%;
}
#clients img{
height: 60px;
}

/* Contact Section */

#contact-box label, #contact-box input, #contact-box textarea{
font-size: 1rem;
}
#contact-box form{
width: 80%;

}

/* Utility Class */

.headingprimary{
font-size: 2rem;
}

.headingsecondary{
font-size: 1.5rem;
}

.btn{
font-size: 1.1rem;
padding: 7px 10px;
/* border: 2px solid white;
background-color: gray;
color: white;
margin: 14px 65px;
border-radius: 40px;*/
}
273 changes: 273 additions & 0 deletions FriendsMeal/css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,273 @@
/* CSS RESET */
*{
margin: 0px;
padding: 0px;
}

html{
scroll-behavior: smooth;
}

/* CSS VARIABLES */
:root{
--navbar-height:50px;
}

/* NAVIGATION BAR */
#navbar{
/* border: 2px solid red; */
display: flex;
align-items: center;
/* justify-content: center; */
height: 65px;
font-family: 'Orelega One', cursive;
position: sticky;
top: 0;
}

#navbar::before{
content: "";
background-color: black;
position: absolute;
height: 100%;
width: 100%;
z-index: 1;
opacity: 0.7;
/* display: block; */
}

/* NAVIGATION BAR: LOGO AND IMAGE */
#logo{
margin: 36px 70px;
z-index: 1;
}

#logo img{
height: 60px;
margin: -25px -46px;

}
/* NAVIGATION BAR: LIST STYLING */

#navbar ul{
display: flex;
z-index: 1;
}

#navbar ul li{
/* color: white; */
list-style: none;
font-size: 1.3rem;
}

#navbar ul li a{
color: white;
/* display: block; */
padding: 3px 22px;
text-decoration: none;
/* border: 2px solid blue; */
border-radius: 32px;
}

#navbar ul li a:hover{
color: black;
background-color: white;
}

/* HOME SECTION */

#home{
display: flex;
flex-direction: column;
/* border: 2px solid red; */
height: 432px;
justify-content: center;
align-items: center;
padding: 2px 200px;
}

#home::before{
content: "";
background: url("../img/bg1.jpg") no-repeat center center/cover;
position: absolute;
top: 0px;
left: 0;
height: 52%;
width: 100%;
z-index: -1;
opacity: 0.9;
}

#home h1{
color: white;
text-align: center;
font-family: 'Merriweather', serif;
}
#home p{
color: white;
text-align: center;
font-size: 1.5rem;
font-family: 'Merriweather', serif;
}

/* SERVICES SECTION */

#services{
margin: 35px;
display: flex;
position: relative;
top: -22px;
z-index: -1;
}

#services .box{
box-sizing: border-box;
/* border: 2px solid red; */
padding: 50px 50px;
margin: -15px 12px;
border-radius: 25px;
background-color: rgb(202, 199, 199);

}

#services .box:hover{
box-shadow: 9px 8px #757373;
}

#services .box img{
height: 150px;
padding: 10px 5px;
margin: auto;
display: block;
}

/* CLIENT SECTION */

#client-selection{
/* height: 344px; */
position: relative;
z-index: -2;
}

#client-selection::before{
content: "";
background: url("../img/bg2.jpg");
position: absolute;
width: 100%;
height: 100%;
z-index: -1;
opacity: 0.7;
}

#clients{
display: flex;
align-items: center;
justify-content: center;
}

#clients img{
height: 105px;
}

.client-item{
padding: 34px;
}

/* CONTACT SECTION */

#contact{
position: relative;
}

#contact::before {
content: "";
background: url(../img/computer.jpg) no-repeat center center/cover;
position: absolute;
height: 100%;
width: 100%;
z-index: -2;
opacity: 0.4;
}

#contact-box{
display: flex;
align-items: center;
justify-content: center;
padding-bottom: 34px;
}
#contact-box input, #contact-box textarea{
width: 100%;
padding: 0.5rem;
font-size: 1.1rem;
/* text-align: center; */
font-family: 'Merriweather', serif;
z-index: 1;

}

#contact-box label{
font-size: 1.3rem;
font-family: 'Merriweather', serif;
}

#contact-box form{
width: 40%;
}

#contact-box input[type="submit"]{
padding: 7px 20px;
margin: 3px 6px;
}

#contact-box input[type="submit"]:hover{
background-color: rgb(121, 120, 120);
color: white;
cursor: pointer;
}

/* FOOTER SECTION */

footer{
text-align: center;
background-color: rgb(42, 31, 31);
color: white;
padding: 5px 10px;
}

/* UTILITY CLASSES */

.headingprimary{
font-size: 2.8rem;
padding: 20px 12px;
text-align: center;
font-family: 'Merriweather', serif;
}


.headingsecondary{
font-size: 1.8rem;
padding: 6px 20px;
text-align: center;
font-family: 'Merriweather', serif;
}

p{
text-align: center;
font-family: 'Merriweather', serif;
}

.btn{
padding: 6px 48px;
border: 2px solid white;
background-color: gray;
color: white;
font-size: 1.5rem;
margin: 14px 65px;
border-radius: 40px;
}

.btn:hover{
cursor: pointer;
background-color: rgb(128, 119, 119);
color: white;
}
Binary file added FriendsMeal/img/bg1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added FriendsMeal/img/bg2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added FriendsMeal/img/computer.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added FriendsMeal/img/food-delivery.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added FriendsMeal/img/hamburger.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added FriendsMeal/img/logo1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added FriendsMeal/img/logo2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added FriendsMeal/img/logo3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added FriendsMeal/img/logo4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added FriendsMeal/img/logo5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added FriendsMeal/img/logo6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added FriendsMeal/img/mylogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added FriendsMeal/img/pizza.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit d31cfa1

Please sign in to comment.