Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes the Issues in landing page and footer #76

Merged
merged 1 commit into from
Jan 2, 2025
Merged
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
29 changes: 19 additions & 10 deletions assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -323,8 +323,10 @@ body.nav-active {
#REUSED STYLE
\*-----------------------------------*/

.container {
padding-inline: 16px;
#classic-elegance {
color: white;
font-weight: bolder;
font-size: 2rem;
}

.separator {
Expand Down Expand Up @@ -1675,6 +1677,16 @@ textarea.input-field {
background-color: var(--black-alpha-80);
}

.footer-list-left{
padding: 15px;
margin-left: 2rem;
}

.footer-list-right{
margin-right: 2rem;
padding: 20px 10px;
}

.footer-link {
color: #fff;
font-weight: var(--weight-bold);
Expand All @@ -1688,6 +1700,10 @@ textarea.input-field {
color: var(--gold-crayola);
}

.footer-bottom{
margin-bottom: -10rem;
}

.copyright {
color: var(--quick-silver);
background-color: var(--black-alpha-80);
Expand All @@ -1696,6 +1712,7 @@ textarea.input-field {
height: 50px;
padding-top: 10px;
line-height: var(--lineHeight-3);
margin: 0;
}

.copyright .link {
Expand Down Expand Up @@ -2526,14 +2543,6 @@ section{
}
}









/**
* responsive for larger than 1400px screen
*/
Expand Down
11 changes: 6 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
- custom css link
-->
<link rel="stylesheet" href="./assets/css/style.css">
<link rel="stylesheet" href="styles.css">

<!--
- preload images
Expand Down Expand Up @@ -252,7 +253,7 @@
<img src="https://abhiram.sirv.com/609%20Workved/assets/sunmill-loc_batcheditor_fotor%20(1).avif?format=webp" width="1880" height="950" alt="" class="img-cover">
</div>

<p class="label-2 section-subtitle slider-reveal newHero2">Classic Elegance</p>
<p class="label-2 section-subtitle slider-reveal newHero2" id="classic-elegance">Classic Elegance</p>

<h1 class="display-1 hero-title slider-reveal newHero">
Create Your Space <br>
Expand All @@ -279,7 +280,7 @@ <h1 class="display-1 hero-title slider-reveal newHero">
<img src="https://abhiram.sirv.com/609%20Workved/assets/heroLocation%20(1).avif?format=webp" width="1880" height="950" alt="" class="img-cover">
</div>

<p class="label-2 section-subtitle slider-revea newHero2">delightful experience</p>
<p class="label-2 section-subtitle slider-revea newHero2" id="classic-elegance">delightful experience</p>

<h1 class="display-1 hero-title slider-reveal newHero">
Transforming offices into <br>
Expand Down Expand Up @@ -307,7 +308,7 @@ <h1 class="display-1 hero-title slider-reveal newHero">

</div>

<p class="label-2 section-subtitle slider-reveal newHero2">amazing & elegence</p>
<p class="label-2 section-subtitle slider-reveal newHero2" id="classic-elegance">amazing & elegence</p>

<h1 class="display-1 hero-title slider-reveal newHero ">
Where Every Floor <br>
Expand Down Expand Up @@ -766,7 +767,7 @@ <h3 class="card-title title-2 text-center">

</div>

<ul class="footer-list">
<ul class="footer-list footer-list-left">

<li>
<a href="#" class="label-2 footer-link hover-underline">Home</a>
Expand All @@ -778,7 +779,7 @@ <h3 class="card-title title-2 text-center">

</ul>

<ul class="footer-list">
<ul class="footer-list footer-list-right">

<li>
<a href="#" class="label-2 footer-link hover-underline">Facebook</a>
Expand Down
6 changes: 6 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#classic-elegance {
color: white;
font-weight: bolder;
font-size: 2rem;
}

Loading