Skip to content

Commit e1b1aa3

Browse files
Enhanced the footer UI (#1395)
1 parent 89d15b0 commit e1b1aa3

File tree

6 files changed

+42
-6
lines changed

6 files changed

+42
-6
lines changed

assets/html_files/about.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ <h3 align="center" style="color: #ffecd1;">Thank You for Visiting Beautiify!</h3
132132
<footer>
133133
<div class="footer-container">
134134
<div class="company-info">
135-
<h1 class="company-name heading">Beautiify</h1>
135+
<h1 class="company-name heading"><img src="../images/logo.png">Beautiify</h1>
136136
<p>
137137
Beautiify comprises a curated selection of beautifully designed components and animations that can be seamlessly incorporated into any website, elevating its overall UI experience. Discover elegant buttons, stylish sliders, and captivating animations to elevate your website.
138138
</p>

assets/html_files/contact.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ <h2 class="form-title">Send us a message :)</h2>
154154
<footer>
155155
<div class="footer-container">
156156
<div class="company-info">
157-
<h1 class="company-name heading">Beautiify</h1>
157+
<h1 class="company-name heading"><img src="../images/logo.png">Beautiify</h1>
158158
<p>
159159
Beautiify comprises a curated selection of beautifully designed components and animations that can be seamlessly incorporated into any website, elevating its overall UI experience. Discover elegant buttons, stylish sliders, and captivating animations to elevate your website.
160160
</p>

assets/html_files/contributor.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ <h1 class="heading">Our Valuable Contributors</h1>
101101
<footer>
102102
<div class="footer-container">
103103
<div class="company-info">
104-
<h1 class="company-name heading">Beautiify</h1>
104+
<h1 class="company-name heading"><img src="../images/logo.png">Beautiify</h1>
105105
<p>
106106
Beautiify comprises a curated selection of beautifully designed components and animations that can be seamlessly incorporated into any website, elevating its overall UI experience. Discover elegant buttons, stylish sliders, and captivating animations to elevate your website.
107107
</p>

assets/html_files/faq.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
<footer>
103103
<div class="footer-container">
104104
<div class="company-info">
105-
<h1 class="company-name heading">Beautiify</h1>
105+
<h1 class="company-name heading"><img src="../images/logo.png">Beautiify</h1>
106106
<p>
107107
Beautiify comprises a curated selection of beautifully designed components and animations that can be seamlessly incorporated into any website, elevating its overall UI experience. Discover elegant buttons, stylish sliders, and captivating animations to elevate your website.
108108
</p>

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ <h2>Transfer Lists</h2>
341341
<footer>
342342
<div class="footer-container">
343343
<div class="company-info">
344-
<h1 class="company-name heading">Beautiify</h1>
344+
<h1 class="company-name heading"><img src="./assets/images/logo.png">Beautiify</h1>
345345
<p>
346346
Beautiify comprises a curated selection of beautifully designed components and animations that can be seamlessly incorporated into any website, elevating its overall UI experience. Discover elegant buttons, stylish sliders, and captivating animations to elevate your website.
347347
</p>

style.css

Lines changed: 37 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -649,6 +649,34 @@ footer {
649649
padding: 0 20px;
650650
}
651651

652+
.footer-ul li a {
653+
text-decoration: none;
654+
padding: 5px 0;
655+
transition: color 0.3s ease-in-out;
656+
position: relative;
657+
}
658+
659+
.footer-ul li a::after {
660+
content: "";
661+
display: block;
662+
width: 0;
663+
height: 3px;
664+
background: #d31313; /* Color of the underline */
665+
transition: width 0.3s ease-in-out;
666+
position: absolute;
667+
bottom: -2px;
668+
left: 50%;
669+
transform: translateX(-50%);
670+
}
671+
672+
.footer-ul li a:hover {
673+
color: #ec685c; /* Color of the text on hover */
674+
}
675+
676+
.footer-ul li a:hover::after {
677+
width: 100%; /* Fully expand the underline */
678+
}
679+
652680
.company-info {
653681
font-weight: 600;
654682
flex: 1 1 30%;
@@ -665,6 +693,14 @@ footer {
665693
.company-name {
666694
font-size: 24px;
667695
margin-bottom: 10px;
696+
align-items: center;
697+
}
698+
699+
.company-name img {
700+
width: 36px;
701+
width: 36px;
702+
vertical-align: middle;
703+
margin-top: -5px;
668704
}
669705

670706
.company-info p {
@@ -1201,4 +1237,4 @@ footer {
12011237
width: 280px !important;
12021238
margin: 15px !important;
12031239
}
1204-
}
1240+
}

0 commit comments

Comments
 (0)