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
55 changes: 55 additions & 0 deletions assets/css_files/discussion.css
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,61 @@ form#new-post-form button:hover {
box-shadow: 0 8px 32px rgba(102, 126, 234, 0.18), 0 2px 8px rgba(0,0,0,0.10);
}


.site-footer {
/* background-color: #222; */
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); /* from main */
/* color: #ddd; */
/* color: #3656d4; */
padding: 40px 20px 20px;
font-family: 'Nunito Sans', sans-serif;
}

.footer-container {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 30px;
max-width: 1200px;

margin: auto;
}

.footer-container h3 {
color: #fff;
margin-bottom: 15px;
}

.footer-container p,
.footer-container a {
font-size: 14px;
color: #bbb;

text-decoration: none;
}

.footer-container a:hover {
color: #fff;
/* color: #3656d4; */
}

.footer-links ul {
list-style: none;
padding: 0;
}

.footer-links ul li {
margin-bottom: 8px;
}

.footer-bottom {
text-align: center;
border-top: 1px solid #444;
padding-top: 15px;
margin-top: 30px;
font-size: 13px;
color: #aaa;
}
/* Responsive Design */
@media (max-width: 900px) {
main {
Expand Down
2 changes: 1 addition & 1 deletion assets/html_files/discussion.html
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ <h1>🗨️ Discussion Forum</h1>
<div id="forum-feed"></div>
</main>

<footer>
<footer class="site-footer">
<div class="footer-container">
<div class="footer-section company-info">
<h1 class="heading">Project Vault</h1>
Expand Down
6 changes: 4 additions & 2 deletions faq.css
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,7 @@ h1 {
/* footer-css */

.site-footer {
background-color: #222;
color: #ddd;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); /* from main */
padding: 40px 20px 20px;
font-family: 'Nunito Sans', sans-serif;
}
Expand All @@ -225,6 +224,7 @@ h1 {
justify-content: space-between;
gap: 30px;
max-width: 1200px;

margin: auto;
}

Expand All @@ -237,11 +237,13 @@ h1 {
.footer-container a {
font-size: 14px;
color: #bbb;

text-decoration: none;
}

.footer-container a:hover {
color: #fff;
/* color: #3656d4; */
}

.footer-links ul {
Expand Down
2 changes: 1 addition & 1 deletion faq.html
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ <h4>
</div>
</section>
</main>
<footer>
<footer class="site-footer">
<div class="footer-container">
<div class="footer-section company-info">
<h1 class="heading">Project Vault</h1>
Expand Down