<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/a7e9f794eb.js" crossorigin="anonymous"></script>
<div class="container">
<input type="checkbox" name="" id="menuBtn">
<div class="menu_overlay">
<label for="menuBtn">
<i class="fas fa-times"></i>
</label>
<div class="side side1">
<ul class="list">
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Projects</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
</div>
<div class="side side2"></div>
<div class="landing_page">
<div class="menu">
<label for="menuBtn">
<i class="fas fa-bars"></i>
</label>
</div>
<div class="side_text">
<div class="text_h4 h4-r">Web Developer</div>
<div class="text_h4 h4-l">Web Designer</div>
</div>
<div class="main_text">
<div class="text_h2 h2-r">Kiran</div>
<div class="text_h2 h2-l">Raj</div>
</div>
</div>
</div>
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
font-family: "Playfair Display", serif;
font-size: 62.5%;
overflow-x: hidden;
}
.container {
width: 100vw;
min-width: 100%;
height: 100vh;
min-height: 100%;
position: relative;
background: #f7971e; /* fallback for old browsers */
background: -webkit-linear-gradient(
to right,
#ffd200,
#f7971e
); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(
to right,
#ffd200,
#f7971e
); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.menu_overlay {
width: 100vw;
height: 100vh;
position: absolute;
overflow: hidden;
color: #fff;
z-index: 100;
transform: translateX(110%);
transition: transform 0.5s ease;
}
.menu_overlay .fas {
position: absolute;
right: 20px;
top: 20px;
font-size: 2.5rem;
transition: all 0.3s ease;
z-index: 100;
}
.menu_overlay .fas:hover {
color: #4b134f;
transform: scale(1.1) rotate(180deg);
}
.side {
height: 100vh;
position: absolute;
top: 0;
width: 50%;
z-index: 10;
}
.side1 {
height: 100%;
right: 0;
background: #c94b4b;
background: -webkit-linear-gradient(to right, #4b134f, #c94b4b);
background: linear-gradient(to right, #4b134f, #c94b4b);
}
.side2 {
background-color: #4b134f;
left: 0;
transform: translateX(-100%);
transition: transform 0.5s ease;
}
.menu_overlay ul {
height: 100%;
width: 100%;
list-style: none;
padding: 20px;
font-size: 4rem;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
z-index: 100;
color: #111;
}
.menu_overlay a {
width: 100%;
color: #fff;
text-decoration: none;
text-align: center;
}
.menu_overlay a:hover {
color: #c94b4b;
}
#menuBtn {
display: none;
}
.landing_page {
max-height: 100vh;
height: 100%;
width: 100%;
position: relative;
}
.menu {
position: absolute;
right: 20px;
top: 20px;
}
.fas {
font-size: 2rem;
color: #222;
}
.fas:hover {
color: #4b134f;
}
.side_text {
height: 10vh;
width: 60%;
color: #c94b4b;
position: absolute;
left: 0px;
bottom: 20px;
text-shadow: 0 0 1px #111;
padding: 10px;
font-size: 16px;
color: #4b134f;
}
.main_text {
color: #c94b4b;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
text-shadow: 0 0 1px #111;
display: flex;
flex-direction: column;
}
.h2-r,
.h2-l {
font-size: 6rem;
}
.h2-r {
transform: rotate(270deg);
margin-left: -100px;
z-index: 10;
}
.h2-l {
margin-left: 100px;
background-color: #4b134f;
padding: 20px;
z-index: 0;
}
@media screen and (max-width: 650px) {
.list a {
font-size: 2rem;
}
}
let side1 = document.querySelector(".side1");
let side2 = document.querySelector(".side2");
let overlay = document.querySelector(".menu_overlay");
let open = document.querySelector(".fa-bars");
let close = document.querySelector(".fa-times");
console.log(side1, side2, overlay, open, close);
open.addEventListener("click", () => {
overlay.style.transform = "translateX(0)";
side2.style.transform = "translateX(0)";
});
close.addEventListener("click", () => {
overlay.style.transform = "translateX(110%)";
side2.style.transform = "translateX(-110%)";
});
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.