Skip to content

Commit

Permalink
base commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Vortriz committed Dec 10, 2023
1 parent a91f17c commit a78b681
Show file tree
Hide file tree
Showing 7 changed files with 176 additions and 0 deletions.
Binary file added assets/Dance Cover.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 assets/footer.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 assets/homepage-banner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions assets/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
42 changes: 42 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./main.css">
<script src="./script.js"></script>
<title>IICM 2023</title>
</head>
<body>
<div class="page-wrapper">

<section class="section header" id="section1">
<div class="navbar">
<img src="./assets/logo.svg" alt="">
<ul class="navbar-links">
<li><a href="index.html">HOME</a></li>
<li><a href="about.html">GALLERY</a></li>
<li><a href="contact.html">SCHEDULE</a></li>
</ul>
</div>
<div class="hero">IICM</div>
</section>

<!-- <hr> -->

<section class="section gallery" id="section2">
two

</section>

<!-- <hr> -->

<section class="section timeline" id="section3">
<div class="footer">

</div>
</section>

</div>
</body>
</html>
103 changes: 103 additions & 0 deletions main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
* {
box-sizing: border-box;
}

html, body{
margin: 0;
}


.page-wrapper {
margin: 0;
min-height: 100vh;
}

section {
height: 100vh;
}

/* Landing */

.header {
background-image: url(./assets/homepage-banner.png);
background-repeat: no-repeat;
background-size: cover;
display: flex;
justify-content: center;
}

.navbar {
display: flex;
align-items: center;
justify-content: space-between;
height: 5vh;
width: 100%;
margin-top: 2vh;
}

.navbar img {
height: 7vh;
margin-left: 2vh;
}

.navbar-links {
list-style: none;
display: flex;
width: 20vw;
align-items: center;
justify-content: space-between;
margin-right: 5vh;
padding: 0;

}

.navbar-links li {
display: inline;
text-align: center;
align-items: center;
align-content: center;
font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-weight: 900;
letter-spacing: 0.05em;
color: springgreen;

}

.navbar-links a {
text-decoration: none;
color: #fff;
}

.hero {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-weight: 900;
font-size: 8vh;
letter-spacing: 0.05em;
text-align: center;
color: #fff;
}


/* Footer */

/* .footer-img {
bottom: 0;
left: 0;
width: 100vmax;
height: 100%;
overflow: hidden;
} */

.footer {
width: 100%;
height: 100%;
background-image: url(./assets/footer.png);
background-size: contain;
background-repeat: no-repeat;
background-position: bottom;
display: block;
}
11 changes: 11 additions & 0 deletions script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
// $(document).ready(function () {
// $('#fullpage').fullpage({
// navigation: true,
// navigationPosition: 'right',
// navigationTooltips: ['section1', 'section2', 'section3'],
// showActiveTooltip: true,
// slidesNavigation: true,
// slidesNavPosition: 'bottom',
// controlArrows: false,
// });
// });

0 comments on commit a78b681

Please sign in to comment.