Skip to content
Open
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
115 changes: 105 additions & 10 deletions css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ table {

* {
box-sizing: border-box;
border: 1px solid greenyellow;
color: rgb(225,239, 230);
}

html {
Expand Down Expand Up @@ -90,9 +92,46 @@ header {
background-image: url('../img/home-header.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-repeat:no-repeat;
}
.header-info{
height: 25%;
display: flex;
flex-flow: column wrap;
align-content: center;
align-items: center;
background-color: rgb(0, 4, 17, .8);
}
h1{
height: 33.3%;
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
nav{
height: 66.6%;
width: 100%;
}
.links{
height: 50%;
width: 100%;
display: flex;
justify-content: space-evenly;

}
a{
color: rgb(225,239, 230);
}
.socials{
height: 50%;
width: 15%;
margin-left: 42.5;
margin-right: 42.5%;
display: flex;
color: rgb(225,239, 230);
justify-content: space-around;
}
/* spacers */
.spacer {
width: 100%;
Expand All @@ -108,27 +147,40 @@ header {
/* gallery section */
.gallery {
width: 100%;
height: 100vh;
height: 181.5vh;
text-align: center;
background-color: rgb(0, 4, 17);
display: flex;
}
.images{
display: flex;
width: 100vw;
justify-content: space-evenly;
flex-wrap: wrap;
}
.image-row {
padding-top: 1%;
padding-bottom: 1%;
display: flex;
width: 100vw;
justify-content: space-evenly;
}

/* about us section */
.about {
width: 100%;
height: 75vh;
text-align: center;
height: 120vh;
text-align:center;
background-image: url("../img/staff-cooks.jpg");
background-size: cover;
background-position: top;
background-position:top;
background-repeat: no-repeat;
}

.about-container {
height: 100%;
height: 120vh;
display: flex;
flex-wrap: wrap;
justify-content: center;
flex-wrap:wrap;
justify-content:center;
align-items: center;
background-color: rgb(0, 4, 17, .8);
}
Expand Down Expand Up @@ -194,12 +246,55 @@ footer {
height: 15vh;
padding-top: 2.5vh;
font-size: 3rem;
display: flex;
flex-direction: row;
}
.email-container{
width: 33.33%;
display: flex;
flex-wrap: wrap;
align-items: center;
}
.email-container h5{
width: 100%;
text-align: center;
align-items: center;
}

.footer-right{
width: 66.6%;
display: flex;
flex-direction: column;
align-items: center;

}
.footer-links{
width: 100%;
display: flex;
justify-content:space-around;

}
.footer nav{
display: flex;
justify-content:space-around;

}

.footer a{
display: flex;
justify-content:space-around;
width: 20%;
}
.copyright{
height: 10%;

}
/* mobile media query */
@media (max-width: 428px) {
/* header section */

.header{

}

/* gallery section */
.gallery {
Expand Down
Loading