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
Binary file modified .DS_Store
Binary file not shown.
62 changes: 61 additions & 1 deletion css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ body {

h1, h2, h3, h4, h5, h6, p, a, i {
text-decoration: none;
color: white;
}

h1 {
Expand All @@ -88,11 +89,42 @@ header {
width: 100%;
height: 100vh;
background-image: url('../img/home-header.jpg');
color: white;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}

header i {
font-size: 3rem;
margin: 1.5rem;
}

header>div {
background-color: rgb(0, 4, 17, .8);
padding: 2rem 0;
}

header h1 {
text-align: center;
}

.social-links {
text-align: center;
}

nav {
width: 60%;
margin: 0 auto;
display: flex;
justify-content: space-between;
}

nav a {
text-decoration: none;
color: white;
}

/* spacers */
.spacer {
width: 100%;
Expand All @@ -109,10 +141,18 @@ header {
.gallery {
width: 100%;
height: 100vh;
padding-top: 5rem;
text-align: center;
background-color: rgb(0, 4, 17);
}

.gallery img {
width: 25%;
margin: 1%;
}



/* about us section */
.about {
width: 100%;
Expand Down Expand Up @@ -191,9 +231,29 @@ header {
/* footer section */
footer {
width: 100%;
height: 15vh;
padding-top: 2.5vh;
font-size: 3rem;
display: flex;
justify-content: space-around;
align-items: flex-start;
background: black;
}

footer nav {
width: 100%;
}

label {
color: white;
}

footer>div {
width: 60%;
}

footer .copyright {
text-align: right;
font-size: 2rem;
}

/* mobile media query */
Expand Down
158 changes: 151 additions & 7 deletions css/menu.css
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ footer, header, hgroup, menu, nav, section {
}
body {
line-height: 1;

}
ol, ul {
list-style: none;
Expand Down Expand Up @@ -60,6 +61,7 @@ html {
body {
font-family: 'Roboto', sans-serif;
line-height: 1.5;

}

h1, h2, h3, h4, h5, h6, p, a, i {
Expand All @@ -76,6 +78,7 @@ h2 {

h3 {
font-size: 5rem;
margin-bottom: 20px;
}

h4 {
Expand All @@ -94,6 +97,38 @@ header {
background-size: cover;
background-position: center;
background-repeat: no-repeat;
color: white;
}


header i {
font-size: 3rem;
margin: 1.5rem;
}

header>div {
background-color: rgb(0, 4, 17, .8);
padding: 2rem 0;
}

header h1 {
text-align: center;
}

.social-links {
text-align: center;
}

nav {
width: 60%;
margin: 0 auto;
display: flex;
justify-content: space-between;
}

nav a {
text-decoration: none;
color: white;
}

/* spacer */
Expand All @@ -118,18 +153,48 @@ header {
background-size: cover;
background-position: center;
background-repeat: no-repeat;
color: white;
}

/* footer section */
footer {
width: 100%;
height: 15vh;
padding-top: 2.5vh;
font-size: 3rem;
.menu-container {
background-color: rgb(0, 4, 17, .8);
display: flex;
flex-wrap: wrap;
justify-content: center;
column-gap: 5%;
}

.menu-section {
width: 35%;
margin: 3% 0;
}

.menu-item {
margin-bottom: 20px;
}


.menu h2 {
width: 80%;
text-align: center;
}

h4 {
display: inline-block;
}

h4:first-child {
width: 70%;
}

h4:nth-child(2) {
text-align: right;
width: 25%;
}


/* mobile media query */
@media (max-width: 428px) {
@media (max-width: 620px) {
/* header section */
.header-title {
width: 75%;
Expand All @@ -138,15 +203,94 @@ footer {
font-size: 4rem;
}

h1 {
font-size: 5rem;
}

nav {
flex-direction: column;
text-align: center;
}

/* menu */
.menu {
background-image: none;
}

.menu p {
text-align: center;
}

.menu-container {
background: rgb(225, 239, 230);
color: rgb(0, 4, 17);
}

h2 {
border-bottom: 10px solid rgb(0, 4, 17);
}

h3 {
padding: 3%;
border: 3px solid rgb(0, 4, 17);
text-align: center;
}

h4 {
width: 90%;
margin: auto;
display: block;
text-align: center!important;

}

.menu-item {
border-bottom: 3px solid rgb(0, 4, 17);
}

.menu-section {
width: 70%;
}

/* footer section */
footer {
height: auto;
padding-top: 2.5vh;
font-size: 2rem;

}
}

/* footer section */
footer {
width: 100%;
height: 15vh;
padding-top: 2.5vh;
font-size: 3rem;
display: flex;
justify-content: space-around;
align-items: flex-start;
background: black;
}

footer .copyright {
color: white
}

footer nav {
width: 100%;

}

label {
color: white;
}

footer>div {
width: 60%;
}

footer .copyright {
text-align: right;
font-size: 2rem;
}
Loading