HTML preprocessors can make writing HTML more powerful or convenient. For instance, Markdown is designed to be easier to write and read for text documents and you could write a loop in Pug.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. So you don't have access to higher-up elements like the <html>
tag. If you want to add classes there that can affect the whole document, this is the place to do it.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. If you need things in the <head>
of the document, put that code here.
The resource you are linking to is using the 'http' protocol, which may not work when the browser is using https.
CSS preprocessors help make authoring CSS easier. All of them offer things like variables and mixins to provide convenient abstractions.
It's a common practice to apply CSS to a page that styles elements such that they are consistent across all browsers. We offer two of the most popular choices: normalize.css and a reset. Or, choose Neither and nothing will be applied.
To get the best cross-browser support, it is a common practice to apply vendor prefixes to CSS properties and values that require them to work. For instance -webkit-
or -moz-
.
We offer two popular choices: Autoprefixer (which processes your CSS server-side) and -prefix-free (which applies prefixes via a script, client-side).
Any URLs added here will be added as <link>
s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.
You can apply CSS to your Pen from any stylesheet on the web. Just put a URL to it here and we'll apply it, in the order you have them, before the CSS in the Pen itself.
You can also link to another Pen here (use the .css
URL Extension) and we'll pull the CSS from that Pen and include it. If it's using a matching preprocessor, use the appropriate URL Extension and we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
JavaScript preprocessors can help make authoring JavaScript easier and more convenient.
Babel includes JSX processing.
Any URL's added here will be added as <script>
s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.
You can apply a script from anywhere on the web to your Pen. Just put a URL to it here and we'll add it, in the order you have them, before the JavaScript in the Pen itself.
If the script you link to has the file extension of a preprocessor, we'll attempt to process it before applying.
You can also link to another Pen here, and we'll pull the JavaScript from that Pen and include it. If it's using a matching preprocessor, we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
Search for and use JavaScript packages from npm here. By selecting a package, an import
statement will be added to the top of the JavaScript editor for this package.
Using packages here is powered by esm.sh, which makes packages from npm not only available on a CDN, but prepares them for native JavaScript ESM usage.
All packages are different, so refer to their docs for how they work.
If you're using React / ReactDOM, make sure to turn on Babel for the JSX processing.
If active, Pens will autosave every 30 seconds after being saved once.
If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.
If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.
Visit your global Editor Settings.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>complete responsive ecommerce website design tutorial</title>
<!-- font awesome cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<!-- custom css file link -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- header section starts -->
<header>
<div id="menu-bar" class="fas fa-bars"></div>
<a href="#" class="logo">nike</a>
<nav class="navbar">
<a href="#home">home</a>
<a href="#products">products</a>
<a href="#featured">featured</a>
<a href="#review">review</a>
</nav>
<div class="icons">
<a href="#" class="fas fa-heart"></a>
<a href="#" class="fas fa-shopping-cart"></a>
<a href="#" class="fas fa-user"></a>
</div>
</header>
<!-- header section ends -->
<!-- home section starts -->
<section class="home" id="home">
<div class="slide-container active">
<div class="slide">
<div class="content">
<span>nike red shoes</span>
<h3>nike metcon shoes</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Repellat maiores et eos eaque veritatis aut laboriosam earum dolorem iste atque.</p>
<a href="#" class="btn">add to cart</a>
</div>
<div class="image">
<img src="images/home-shoe-1.png" class="shoe" alt="">
<img src="images/home-text-1.png" class="text" alt="">
</div>
</div>
</div>
<div class="slide-container">
<div class="slide">
<div class="content">
<span>nike blue shoes</span>
<h3>nike metcon shoes</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Repellat maiores et eos eaque veritatis aut laboriosam earum dolorem iste atque.</p>
<a href="#" class="btn">add to cart</a>
</div>
<div class="image">
<img src="images/home-shoe-2.png" class="shoe" alt="">
<img src="images/home-text-2.png" class="text" alt="">
</div>
</div>
</div>
<div class="slide-container">
<div class="slide">
<div class="content">
<span>nike yellow shoes</span>
<h3>nike metcon shoes</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Repellat maiores et eos eaque veritatis aut laboriosam earum dolorem iste atque.</p>
<a href="#" class="btn">add to cart</a>
</div>
<div class="image">
<img src="images/home-shoe-3.png" class="shoe" alt="">
<img src="images/home-text-3.png" class="text" alt="">
</div>
</div>
</div>
<div id="prev" class="fas fa-chevron-left" onclick="prev()"></div>
<div id="next" class="fas fa-chevron-right" onclick="next()"></div>
</section>
<!-- home section ends -->
<!-- service section starts -->
<section class="service">
<div class="box-container">
<div class="box">
<i class="fas fa-shipping-fast"></i>
<h3>fast delivery</h3>
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Illum, fugit.</p>
</div>
<div class="box">
<i class="fas fa-undo"></i>
<h3>10 days replacements</h3>
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Illum, fugit.</p>
</div>
<div class="box">
<i class="fas fa-headset"></i>
<h3>24 x 7 support</h3>
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Illum, fugit.</p>
</div>
</div>
</section>
<!-- service section ends -->
<!-- products section starts -->
<section class="products" id="products">
<h1 class="heading"> latest <span>products</span> </h1>
<div class="box-container">
<div class="box">
<div class="icons">
<a href="#" class="fas fa-heart"></a>
<a href="#" class="fas fa-share"></a>
<a href="#" class="fas fa-eye"></a>
</div>
<img src="images/product-1.png" alt="">
<div class="content">
<h3>nike shoes</h3>
<div class="price">$120.99 <span>$150.99</span></div>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
</div>
<a href="#" class="btn">add to cart</a>
</div>
</div>
<div class="box">
<div class="icons">
<a href="#" class="fas fa-heart"></a>
<a href="#" class="fas fa-share"></a>
<a href="#" class="fas fa-eye"></a>
</div>
<img src="images/product-2.png" alt="">
<<div class="content">
<h3>nike shoes</h3>
<div class="price">$120.99 <span>$150.99</span></div>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
</div>
<a href="#" class="btn">add to cart</a>
</div>
</div>
<div class="box">
<div class="icons">
<a href="#" class="fas fa-heart"></a>
<a href="#" class="fas fa-share"></a>
<a href="#" class="fas fa-eye"></a>
</div>
<img src="images/product-3.png" alt="">
<div class="content">
<h3>nike shoes</h3>
<div class="price">$120.99 <span>$150.99</span></div>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
</div>
<a href="#" class="btn">add to cart</a>
</div>
</div>
<div class="box">
<div class="icons">
<a href="#" class="fas fa-heart"></a>
<a href="#" class="fas fa-share"></a>
<a href="#" class="fas fa-eye"></a>
</div>
<img src="images/product-4.png" alt="">
<div class="content">
<h3>nike shoes</h3>
<div class="price">$120.99 <span>$150.99</span></div>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
</div>
<a href="#" class="btn">add to cart</a>
</div>
</div>
<div class="box">
<div class="icons">
<a href="#" class="fas fa-heart"></a>
<a href="#" class="fas fa-share"></a>
<a href="#" class="fas fa-eye"></a>
</div>
<img src="images/product-5.png" alt="">
<div class="content">
<h3>nike shoes</h3>
<div class="price">$120.99 <span>$150.99</span></div>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
</div>
<a href="#" class="btn">add to cart</a>
</div>
</div>
<div class="box">
<div class="icons">
<a href="#" class="fas fa-heart"></a>
<a href="#" class="fas fa-share"></a>
<a href="#" class="fas fa-eye"></a>
</div>
<img src="images/product-6.png" alt="">
<div class="content">
<h3>nike shoes</h3>
<div class="price">$120.99 <span>$150.99</span></div>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
</div>
<a href="#" class="btn">add to cart</a>
</div>
</div>
</div>
</section>
<!-- products section ends -->
<!-- featured section starts -->
<section class="featured" id="featured">
<h1 class="heading"> <span>featured</span> products </h1>
<div class="row">
<div class="image-container">
<div class="small-image">
<img src="images/f-img-1.1.png" class="featured-image-1" alt="">
<img src="images/f-img-1.2.png" class="featured-image-1" alt="">
<img src="images/f-img-1.3.png" class="featured-image-1" alt="">
<img src="images/f-img-1.4.png" class="featured-image-1" alt="">
</div>
<div class="big-image">
<img src="images/f-img-1.1.png" class="big-image-1" alt="">
</div>
</div>
<div class="content">
<h3>new nike airmax shoes</h3>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
</div>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Dicta facilis praesentium odit voluptas illum iure libero quis fuga commodi. Autem.</p>
<div class="price">$80.99 <span>$120.99</span></div>
<a href="#" class="btn">add to cart</a>
</div>
</div>
<div class="row">
<div class="image-container">
<div class="small-image">
<img src="images/f-img-2.1.png" class="featured-image-2" alt="">
<img src="images/f-img-2.2.png" class="featured-image-2" alt="">
<img src="images/f-img-2.3.png" class="featured-image-2" alt="">
<img src="images/f-img-2.4.png" class="featured-image-2" alt="">
</div>
<div class="big-image">
<img src="images/f-img-2.1.png" class="big-image-2" alt="">
</div>
</div>
<div class="content">
<h3>new nike airmax shoes</h3>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
</div>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Dicta facilis praesentium odit voluptas illum iure libero quis fuga commodi. Autem.</p>
<div class="price">$80.99 <span>$120.99</span></div>
<a href="#" class="btn">add to cart</a>
</div>
</div>
<div class="row">
<div class="image-container">
<div class="small-image">
<img src="images/f-img-3.1.png" class="featured-image-3" alt="">
<img src="images/f-img-3.2.png" class="featured-image-3" alt="">
<img src="images/f-img-3.3.png" class="featured-image-3" alt="">
<img src="images/f-img-3.4.png" class="featured-image-3" alt="">
</div>
<div class="big-image">
<img src="images/f-img-3.1.png" class="big-image-3" alt="">
</div>
</div>
<div class="content">
<h3>new nike airmax shoes</h3>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
</div>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Dicta facilis praesentium odit voluptas illum iure libero quis fuga commodi. Autem.</p>
<div class="price">$80.99 <span>$120.99</span></div>
<a href="#" class="btn">add to cart</a>
</div>
</div>
</section>
<!-- featured section ends -->
<!-- review section starts -->
<section class="review" id="review">
<h1 class="heading"> customer's <span>review</span> </h1>
<div class="box-container">
<div class="box">
<img src="images/pic1.png" alt="">
<h3>john deo</h3>
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Fugiat, quos eum. Laborum aut a consequatur ducimus, molestias possimus quisquam rerum temporibus ipsum voluptate accusamus, unde ab asperiores? Exercitationem, unde rem.</p>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
</div>
</div>
<div class="box">
<img src="images/pic2.png" alt="">
<h3>john deo</h3>
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Fugiat, quos eum. Laborum aut a consequatur ducimus, molestias possimus quisquam rerum temporibus ipsum voluptate accusamus, unde ab asperiores? Exercitationem, unde rem.</p>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
</div>
<div class="box">
<img src="images/pic3.png" alt="">
<h3>john deo</h3>
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Fugiat, quos eum. Laborum aut a consequatur ducimus, molestias possimus quisquam rerum temporibus ipsum voluptate accusamus, unde ab asperiores? Exercitationem, unde rem.</p>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
</div>
</section>
<!-- review section ends -->
<!-- newsletter section starts -->
<section class="newsletter">
<div class="content">
<h3>monthly newsletter</h3>
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Earum ullam veniam at itaque culpa hic corporis saepe dicta doloremque nihil.</p>
<form action="">
<input type="email" placeholder="enter your email" class="box">
<input type="submit" value="send" class="btn">
</form>
</div>
</section>
<!-- newsletter section ends -->
<!-- footer section -->
<section class="footer">
<div class="box-container">
<div class="box">
<h3>our stores</h3>
<a href="#">india</a>
<a href="#">USA</a>
<a href="#">japan</a>
<a href="#">paris</a>
</div>
<div class="box">
<h3>quick links</h3>
<a href="#">home</a>
<a href="#">products</a>
<a href="#">featured</a>
<a href="#">review</a>
</div>
<div class="box">
<h3>extra links</h3>
<a href="#">my account</a>
<a href="#">my favorite</a>
<a href="#">my orders</a>
<a href="#">newsletter</a>
</div>
<div class="box">
<h3>follow us</h3>
<a href="#">facebook</a>
<a href="#">twitter</a>
<a href="#">instagram</a>
<a href="#">linkedin</a>
</div>
<div class="credit">created by <span> mr. web designer </span> | all rights reserved</div>
</div>
</section>
<!-- custom js file link -->
<script src="js/script.js"></script>
</body>
</html>
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700&display=swap');
:root{
--black:#2c2c54;
--orange:#ff9f1a;
}
*{
font-family: 'Nunito', sans-serif;
margin: 0; padding:0;
box-sizing: border-box;
outline: none; border:none;
text-decoration: none;
text-transform: capitalize;
transition: all .2s linear;
}
html{
font-size: 62.5%;
overflow-x: hidden;
scroll-padding-top:6rem;
scroll-behavior: smooth;
}
section{
padding:2rem 9%;
}
.heading{
text-align: center;
text-transform: uppercase;
font-size: 4rem;
color:var(--black);
padding:1rem;
}
.heading span{
text-transform: uppercase;
color:var(--orange);
}
.btn{
display: inline-block;
margin-top: 1rem;
border-radius: .5rem;
border:.2rem solid var(--black);
font-weight: bolder;
font-size: 1.7rem;
color:var(--black);
cursor: pointer;
background:#fff;
padding:.8rem 3rem;
}
.btn:hover{
background:var(--orange);
color:#fff;
}
header{
position: fixed;
top:0; left:0; right:0;
z-index: 1000;
background:#fff;
padding:2rem 9%;
display: flex;
align-items: center;
justify-content: space-between;
box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
}
header .logo{
font-size: 2.5rem;
color:var(--black);
}
header .navbar a{
font-size: 1.7rem;
color:var(--black);
margin:0 1rem;
}
header .navbar a:hover{
color:var(--orange);
}
header .icons a{
font-size: 2.5rem;
color:var(--black);
margin-left:1.5rem;
}
header .icons a:hover{
color:var(--orange);
}
#menu-bar{
font-size: 2.5rem;
padding: .5rem 1.5rem;
border:.1rem solid var(--black);
color:var(--black);
border-radius: .3rem;
cursor: pointer;
display: none;
}
.home{
padding:0;
position:relative;
}
.home .slide-container .slide{
min-height: 100vh;
display: flex;
align-items: center;
flex-wrap: wrap;
gap:1.5rem;
padding:0 9%;
padding-top: 9rem;
}
.home .slide-container .slide .content{
flex:1 1 40rem;
animation: slideContent .5s linear 1s backwards;
}
@keyframes slideContent{
0%{
opacity: 0;
transform: translateX(-10rem);
}
}
.home .slide-container .slide .image{
flex:1 1 50rem;
padding-bottom: 15rem;
position: relative;
z-index: 0;
}
.home .slide-container .slide .image .shoe{
width:100%;
transform: rotate(-35deg);
animation:shoe .3s linear;
}
@keyframes shoe{
0%{
transform: rotate(0deg) scale(.5);
}
}
.home .slide-container .slide .image .text{
position: absolute;
top:0; left:0;
z-index: -1;
animation:shoeText .5s linear .5s backwards;
}
@keyframes shoeText{
0%{
opacity: 0;
top:-10rem;
}
}
.home .slide-container .slide .content span{
font-size: 2rem;
color:var(--orange);
}
.home .slide-container .slide .content h3{
font-size: 5rem;
color:var(--black);
}
.home .slide-container .slide .content p{
font-size: 1.7rem;
color:#666;
padding:.5rem 0;
}
.home .slide-container:nth-child(1) .slide{
background:url(../images/home-bg-1.jpg) no-repeat;
background-size: cover;
background-position: center;
}
.home .slide-container:nth-child(2) .slide{
background:url(../images/home-bg-2.jpg) no-repeat;
background-size: cover;
background-position: center;
}
.home .slide-container:nth-child(3) .slide{
background:url(../images/home-bg-3.jpg) no-repeat;
background-size: cover;
background-position: center;
}
.home .slide-container{
display: none;
}
.home .slide-container.active{
display: block;
}
.home #prev,
.home #next{
position: absolute;
top:50%;
transform:translateY(-50%);
border-radius: 50%;
z-index: 100;
height:5rem;
width:5rem;
line-height: 4.5rem;
font-size: 2rem;
color:var(--black);
border:.2rem solid var(--black);
cursor: pointer;
text-align: center;
}
.home #prev:hover,
.home #next:hover{
color:#fff;
background:var(--orange);
}
.home #prev{
left:3rem;
}
.home #next{
right:3rem;
}
.service .box-container{
display: flex;
flex-wrap: wrap;
gap:1.5rem;
background:#f9f9f9;
border:.1rem solid rgba(0,0,0,.1);
border-radius: .5rem;
padding:2rem;
}
.service .box-container .box{
text-align: center;
flex:1 1 30rem
}
.service .box-container .box i{
font-size: 4rem;
color:var(--orange);
}
.service .box-container .box h3{
font-size: 2rem;
color:var(--black);
padding-top: 1rem;
}
.service .box-container .box p{
font-size: 1.5rem;
color:#666;
padding:1rem 0;
}
.products .box-container{
display: flex;
flex-wrap: wrap;
gap:1.5rem;
}
.products .box-container .box{
border:.1rem solid rgba(0,0,0,.1);
border-radius: .5rem;
text-align: center;
position: relative;
overflow: hidden;
background:#f9f9f9;
flex:1 1 30rem;
}
.products .box-container .box .content{
padding:1.5rem;
}
.products .box-container .box img{
height:10rem;
transform: rotate(-35deg);
filter:drop-shadow(0 .5rem 1rem rgba(0,0,0,.1));
margin:8rem 2rem;
}
.products .box-container .box:hover img{
transform: rotate(-35deg) scale(1.2);
}
.products .box-container .box .icons{
display: flex;
flex-flow: column;
position: absolute;
top:.5rem; left:-10rem;
}
.products .box-container .box:hover .icons{
left:1rem;
}
.products .box-container .box .icons a{
height:4.5rem;
width:5rem;
line-height: 4.5rem;
font-size: 2rem;
color:var(--black);
border:.1rem solid var(--black);
border-radius: .5rem;
background:#fff;
margin-top: .5rem;
}
.products .box-container .box .icons a:hover{
background:var(--orange);
color:#fff;
}
.products .box-container .box .content h3{
color:var(--black);
font-size: 2.5rem;
}
.products .box-container .box .content .price{
color:var(--black);
font-size: 2.5rem;
font-weight: bolder;
padding:1rem 0;
}
.products .box-container .box .content .price span{
color:var(--orange);
font-size: 1.5rem;
text-decoration: line-through;
}
.products .box-container .box .content .stars{
padding-bottom: 1rem;
}
.products .box-container .box .content .stars i{
font-size: 1.7rem;
color:var(--orange);
}
.featured .row{
display: flex;
flex-wrap: wrap;
gap:1.5rem;
border:.1rem solid rgba(0,0,0,.1);
border-radius: .5rem;
background:#f9f9f9;
padding:2rem;
align-items: center;
margin:1.5rem 0;
}
.featured .row .content{
flex:1 1 40rem;
}
.featured .row .image-container{
display:flex;
gap:1.5rem;
align-items: center;
flex:1 1 50rem;
}
.featured .row .image-container .small-image{
width:20%;
}
.featured .row .image-container .big-image{
width:80%;
padding:1rem;
}
.featured .row .image-container .small-image img{
width:100%;
padding:1rem;
border:.1rem solid rgba(0,0,0,.3);
cursor: pointer;
}
.featured .row .image-container .small-image img:hover{
background:#ccc;
}
.featured .row .image-container .big-image img{
width:100%;
}
.featured .row .image-container .big-image img:hover{
transform: scale(1.05);
}
.featured .row .content h3{
font-size: 2.5rem;
color:var(--black);
}
.featured .row .content .stars i{
font-size: 1.7rem;
color:var(--orange);
padding:.5rem 0;
}
.featured .row .content p{
font-size: 1.5rem;
color:#666;
padding:1rem 0;
}
.featured .row .content .price{
font-size: 2.5rem;
color:var(--black);
font-weight: bolder;
}
.featured .row .content .price span{
font-size: 1.5rem;
color:var(--orange);
text-decoration: line-through;
}
.review .box-container{
display: flex;
flex-wrap: wrap;
gap:1.5rem;
}
.review .box-container .box{
flex:1 1 30rem;
text-align: center;
border:.1rem solid rgba(0,0,0,.1);
border-radius: .5rem;
background:#f9f9f9;
padding:2rem;
}
.review .box-container .box img{
border-radius: 50%;
object-fit: cover;
height:15rem;
width:15rem;
margin:1rem 0;
}
.review .box-container .box h3{
font-size: 2.5rem;
color:var(--black);
}
.review .box-container .box p{
font-size: 1.6rem;
color:#666;
padding:1rem 0;
}
.review .box-container .box .stars i{
color:var(--orange);
font-size: 2rem;
}
.newsletter{
padding-top: .5rem;
padding-bottom: .5rem;
}
.newsletter .content{
text-align: center;
border:.1rem solid rgba(0,0,0,.1);
border-radius: .5rem;
background:#f9f9f9;
padding:2rem;
}
.newsletter .content h3{
font-size: 2.5rem;
color:var(--black);
}
.newsletter .content p{
font-size: 1.5rem;
color:#666;
margin:1rem auto;
max-width: 60rem;
}
.newsletter .content form{
margin:1rem auto;
max-width: 50rem;
display: flex;
}
.newsletter .content form .box{
width:100%;
font-size: 1.7rem;
text-transform: none;
color:#333;
padding:1rem;
border:.2rem solid var(--black);
border-right: none;
margin-top: 1rem;
}
.newsletter .content form .btn{
border-radius: 0;
}
.footer .box-container{
border:.1rem solid rgba(0,0,0,.1);
border-radius: .5rem;
background:#f9f9f9;
padding:2rem;
display: flex;
flex-wrap: wrap;
gap:1.5rem;
}
.footer .box-container .box{
flex:1 1 20rem;
}
.footer .box-container .box h3{
color:var(--black);
font-size: 2.5rem;
padding-bottom: 1.5rem;
}
.footer .box-container .box a{
color:#666;
font-size: 1.5rem;
padding-bottom: 1.5rem;
display: block;
}
.footer .box-container .box a:hover{
color:var(--orange);
}
.footer .box-container .credit{
text-align: center;
width:100%;
border-top: .1rem solid rgba(0,0,0,.1);
font-size: 1.5rem;
padding:1rem;
padding-top: 2rem;
color:#999;
}
.footer .box-container .credit span{
color:var(--orange);
}
/* media queries */
@media (max-width:991px){
html{
font-size: 55%;
}
header{
padding:2rem;
}
section{
padding:2rem;
}
}
@media (max-width:768px){
#menu-bar{
display: block;
}
header .navbar{
position: absolute;
top:100%; left:-120%;
width:100%;
background:#eee;
border-top: .1rem solid rgba(0,0,0,.1);
}
header .navbar.active{
left:0;
}
header .navbar a{
font-size: 2rem;
background:#fff;
border:.1rem solid var(--black);
border-radius: .5rem;
padding:1.5rem;
margin:1.5rem;
display: block;
text-align: center;
}
.home .slide-container .slide .image .text{
width:60%;
}
.home #prev,
.home #next{
top:85%;
}
}
@media (max-width:400px){
html{
font-size: 50%;
}
.home .slide-container .slide .image{
padding-bottom: 6rem;
}
.heading{
font-size: 3rem;
}
}
let menu = document.querySelector('#menu-bar');
let navbar = document.querySelector('.navbar');
menu.onclick = () =>{
menu.classList.toggle('fa-times');
navbar.classList.toggle('active');
}
window.onscroll = () =>{
menu.classList.remove('fa-times');
navbar.classList.remove('active');
}
let slides = document.querySelectorAll('.slide-container');
let index = 0;
function next(){
slides[index].classList.remove('active');
index = (index + 1) % slides.length;
slides[index].classList.add('active');
}
function prev(){
slides[index].classList.remove('active');
index = (index - 1 + slides.length) % slides.length;
slides[index].classList.add('active');
}
document.querySelectorAll('.featured-image-1').forEach(image_1 =>{
image_1.addEventListener('click', () =>{
var src = image_1.getAttribute('src');
document.querySelector('.big-image-1').src = src;
});
});
document.querySelectorAll('.featured-image-2').forEach(image_2 =>{
image_2.addEventListener('click', () =>{
var src = image_2.getAttribute('src');
document.querySelector('.big-image-2').src = src;
});
});
document.querySelectorAll('.featured-image-3').forEach(image_3 =>{
image_3.addEventListener('click', () =>{
var src = image_3.getAttribute('src');
document.querySelector('.big-image-3').src = src;
});
});
Also see: Tab Triggers