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
56 changes: 50 additions & 6 deletions index.css
Original file line number Diff line number Diff line change
Expand Up @@ -456,10 +456,15 @@ header{
footer{
display:flex;
flex-wrap: wrap;
position: relative;
bottom: 0;
width: 100%;
align-items: stretch;
justify-content: space-around;
width: 100%;
background-color: lightgrey;
background-color: black;
color: white;
font-family: 'Poppins',sans-serif;
}

.footer--col{
Expand All @@ -480,24 +485,63 @@ footer{
}

input{
font-size : 1.25rem;
font-size : 1.45rem;
padding : 1rem;
margin: .5rem;
width: 80%;

}
.col--a{
padding : 1rem;
font-size : 2rem;
font-weight: lighter;
text-decoration: none;
color: black;
color: white;
}
.footer--col .button{
width: 80%;
margin: auto;
margin-top: 2%;
border-radius: 9px;
}
.footer--col .button:hover{
background-color: white;
color: black;
cursor: pointer;
}
.col--item{
font-size: 2rem;
font-weight: lighter;
font-size: 1.9rem;
margin: 1%;
}
.col--item span,.col--a{
color: rgb(124, 118, 118);
font-size: 1.7rem;

}
.col--links{
width: 50%;
align-items: center;
text-align: center;
margin-left: auto;
margin-right: auto;
margin-top: 2%;
margin-bottom: 2%;
}
.col--item span:hover,.col--a:hover{
color: whitesmoke;
cursor: pointer;
}
.col--heading{
font-size: 2.5rem;
font-weight: lighter;
font-weight: bolder;
transform: scale(1.1);
font-family: 'Bungee Shade', cursive;
font-family: 'Cutive', serif;
font-family: 'Poppins', sans-serif;
}
.col--item i{
font-size: 1.65rem;
margin-right: 3%;
}
/*---RESPONSIVE DESIGN---*/

Expand Down
27 changes: 14 additions & 13 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shopo</title>
<link href="https://fonts.googleapis.com/css?family=Gloria+Hallelujah|Lato" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css" integrity="sha512-MV7K8+y+gLIBoVD59lQIYicR65iaqukzvf/nwasF0nqhPay5w/9lJmVM2hMDcnK1OnMGCdVK+iQrJ7lzPJQd1w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link href="index.css" rel="stylesheet">
<script src="index.js"></script>
<link href="toastr.css" rel="stylesheet"/>
Expand Down Expand Up @@ -132,25 +133,25 @@
</div>
<footer>
<div class="footer--col">
<span class="col--heading">Contact Us</span>
<input type="text" placeholder="Name">
<input type="text" placeholder="Email">
<input type="text" placeholder="Message">
<div class="button">Submit</div>
<span class="col--heading">Store</span>
<div class="col--item"><label><i class="fa fa-map-marker" aria-hidden="true"></i></label><span>Name</div>
<div class="col--item"><label><i class="fa fa-phone" aria-hidden="true"></i></label><span>9301223122</span></div>
<div class="col--item"><label><i class="fa fa-envelope" aria-hidden="true"></i></label><span>@gmail.com</span></div>
</div>
<div class="footer--col">
<span class="col--heading">About</span>
<a href="#" class="col--a">About us</a>
<a href="#" class="col--a">We're hiring</a>
<a href="#" class="col--a">Support</a>
<a href="#" class="col--a">Help</a>
<div class="col--links"><a href="#" class="col--a">About us</a></div>
<div class="col--links"><a href="#" class="col--a">We're hiring</a></div>
<div class="col--links"><a href="#" class="col--a">Help</a></div>
<div class="col--links"><a href="#" class="col--a">Support</a></div>

</div>
<div class="footer--col">
<span class="col--heading">Store</span>
<div class="col--item">Company Name</div>
<div class="col--item">9528364012</div>
<div class="col--item">[email protected]</div>
<span class="col--heading">Contact Us</span>
<div class="col--field"><input type="text" placeholder="Name"></div>
<div class="col--field"><input type="text" placeholder="Email"></div>
<div class="col--field"><input type="text" placeholder="Message"></div>
<div class="button">Submit</div>
</div>

</footer>
Expand Down