Skip to content

Commit

Permalink
index done but not done
Browse files Browse the repository at this point in the history
  • Loading branch information
codayon committed Feb 2, 2025
1 parent ebc4530 commit 3e8dcdc
Show file tree
Hide file tree
Showing 2 changed files with 116 additions and 5 deletions.
70 changes: 65 additions & 5 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ p {
line-height: 0.8;
}
.container {
width: 1240px;
width: 1320px;
margin: 0 auto;
}
.common-header h2 {
Expand Down Expand Up @@ -244,13 +244,73 @@ p {
margin: 0 auto;
text-align: center;
margin-bottom: 50px;

}
}
.product-show-more-button a {
color: #B88E2F;
color: #b88e2f;
padding: 10px 80px;
font-weight: 600;
border: 2px solid #B88E2F;
border: 2px solid #b88e2f;
text-align: center;
}
/* products section 0 */
/* footer section 1 */
.footer-flex {
display: flex;
margin: 50px 0px 0px 0px;
}
.footer-section-one h1 {
font-size: 24px;
}
.footer-section-one p {
color: #9f9f9f;
font-size: 16px;
margin-top: 65px;
line-height: normal;
}
.footer-section-two {
display: flex;
margin-left: 110px;
column-gap: 110px;
row-gap: 67px;
}
.section-two-list a {
color: black;
font-size: 16px;
font-weight: 500;
line-height: 0.8;
}
.section-two-list li {
margin-bottom: 60px;
}
.section-two-list p {
color: #9f9f9f;
}
.footer-section-three {
margin-left: 100px;
}
.footer-section-three p {
color: #9f9f9f;
font-size: 16px;
font-weight: 500;
line-height: 0.8;
}
.email-input {
display: inline;
margin-top: 60px;
background: transparent;
border: none;
padding: 5px 5px 5px 3px;
border-bottom: 2px solid black;
}
.footer-section-three span {
border-bottom: 2px solid black;
text-transform: uppercase;
padding: 5px 5px 5px 0px;
margin-left: 30px;
}
#footer h4 {
font-size: 16px;
font-weight: 400;
margin: 50px 0;
}
/* footer section 0 */
51 changes: 51 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -418,5 +418,56 @@ <h4>Stylish cafe chair</h4>
</div>
</section>
<!-- products section 0 -->
<!-- footer section 1 -->
<section id="footer">
<hr />
<div class="container">
<div class="footer-flex">
<div class="footer-section-one">
<h1>Funiro.</h1>
<p>
400 University Drive Suite 200 Coral<br />
Gables, <br />
FL 33134 USA
</p>
</div>
<div class="footer-section-two">
<div class="section-two-list">
<ul>
<li>
<a href="#"><p>Links</p></a>
</li>
<li><a href="#">Home</a></li>
<li><a href="#">Shop</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
<div class="section-two-list">
<ul>
<li>
<a href="#"><p>Help</p></a>
</li>
<li><a href="#">Payment Options</a></li>
<li><a href="#">Returns</a></li>
<li><a href="#">Privacy Policis</a></li>
</ul>
</div>
</div>
<div class="footer-section-three">
<a href="#"><p>Newsletter</p></a>
<input
type="text"
placeholder="Enter Your Email Address"
class="email-input"
/>
<a href="#"><span>Subscribe</span></a>
</div>
</div>
<hr />
<h4>2023 furino. All rights reverved</h4>
</div>
</section>
<!-- footer section 0 -->
</body>
</html>

0 comments on commit 3e8dcdc

Please sign in to comment.