Public Access
Redesign footer: 4-column grid, partners section (OC Guy, OCA Paraguay, OD8N), brass top rule, partner cards
This commit is contained in:
+8
-2
@@ -446,10 +446,17 @@
|
||||
<li><a href="support.html">Support</a></li>
|
||||
<li><a href="legal.html">Legal</a></li>
|
||||
<li><a href="/contactus">Contact us</a></li>
|
||||
<li>Partner: <a href="https://OD8N.com">OD8N</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h4>Partners</h4>
|
||||
<div class="partner-list">
|
||||
<a href="https://oc-guy.com" target="_blank" rel="noopener" class="partner-item"><i class="fas fa-handshake"></i> OC Guy</a>
|
||||
<a href="https://oca-py.org" target="_blank" rel="noopener" class="partner-item"><i class="fas fa-handshake"></i> OCA Paraguay</a>
|
||||
<a href="https://OD8N.com" target="_blank" rel="noopener" class="partner-item"><i class="fas fa-handshake"></i> OD8N</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="fcol-desc">
|
||||
<h4>About us</h4>
|
||||
<p>We build smart, scalable business solutions by combining the <strong>stability</strong> of Odoo ERP with the <strong>power</strong> of AI and N8N automation.</p>
|
||||
<p>From streamlined sales to global rollouts, our <strong>lean, eco-friendly</strong> approach helps businesses cut costs, boost efficiency, and grow without limits.</p>
|
||||
@@ -458,7 +465,6 @@
|
||||
<h4>Follow us on</h4>
|
||||
<div class="social">
|
||||
<a href="https://www.linkedin.com/company/odoo4projects/" target="_blank" aria-label="LinkedIn"><i class="fab fa-linkedin-in"></i></a>
|
||||
<a href="/" target="_blank" aria-label="Home"><i class="fas fa-home"></i></a>
|
||||
<a href="https://www.youtube.com/@ODOO4projects" target="_blank" aria-label="YouTube"><i class="fab fa-youtube"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -850,22 +850,38 @@ img { max-width: 100%; height: auto; vertical-align: middle; }
|
||||
.footer {
|
||||
background: var(--midnight);
|
||||
color: rgba(255,255,255,0.8);
|
||||
padding-top: 3rem;
|
||||
padding-top: 3.5rem;
|
||||
position: relative;
|
||||
}
|
||||
.footer::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0; left: 10%; right: 10%;
|
||||
height: 2px;
|
||||
background: linear-gradient(90deg, transparent, var(--brass), transparent);
|
||||
opacity: 0.4;
|
||||
}
|
||||
.fgrid {
|
||||
display: grid;
|
||||
grid-template-columns: 1.5fr 3fr 3.5fr;
|
||||
grid-template-columns: 1.2fr 1.4fr 2.2fr 1.2fr;
|
||||
gap: 2rem;
|
||||
padding-bottom: 2rem;
|
||||
padding-bottom: 2.5rem;
|
||||
border-bottom: 1px solid var(--line-brass);
|
||||
}
|
||||
.footer h4 { font-family: Marcellus, Georgia, serif; color: #fff; margin-bottom: 0.8rem; font-size: 1rem; }
|
||||
.footer h4 {
|
||||
font-family: Marcellus, Georgia, serif;
|
||||
color: #fff;
|
||||
margin-bottom: 0.8rem;
|
||||
font-size: 1rem;
|
||||
letter-spacing: 0.03em;
|
||||
}
|
||||
.footer ul { list-style: none; padding: 0; }
|
||||
.footer li { margin-bottom: 0.3rem; }
|
||||
.footer a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
|
||||
.footer a { color: rgba(255,255,255,0.6); transition: color 0.2s; text-decoration: none; }
|
||||
.footer a:hover { color: var(--brass); }
|
||||
.footer p { color: rgba(255,255,255,0.65); font-size: 0.85rem; line-height: 1.7; }
|
||||
.footer strong { color: #fff; }
|
||||
.footer strong { color: #fff; font-weight: 500; }
|
||||
.footer .fcol-desc p { font-size: 0.88rem; line-height: 1.75; }
|
||||
.footer .social a {
|
||||
display: inline-flex; align-items: center; justify-content: center;
|
||||
width: 2.5rem; height: 2.5rem; border-radius: 50%;
|
||||
@@ -874,10 +890,41 @@ img { max-width: 100%; height: auto; vertical-align: middle; }
|
||||
margin-right: 0.3rem; transition: all 0.2s;
|
||||
}
|
||||
.footer .social a:hover { background: var(--brass); color: var(--midnight); }
|
||||
.fcopy { padding: 1rem 0; text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.4); }
|
||||
.footer .partner-list { display: flex; flex-direction: column; gap: 0.5rem; }
|
||||
.footer .partner-item {
|
||||
display: flex; align-items: center; gap: 0.6rem;
|
||||
padding: 0.5rem 0.75rem;
|
||||
border: 1px solid var(--line-brass);
|
||||
border-radius: var(--radius);
|
||||
transition: all 0.25s;
|
||||
color: rgba(255,255,255,0.65);
|
||||
font-size: 0.85rem;
|
||||
text-decoration: none;
|
||||
}
|
||||
.footer .partner-item:hover {
|
||||
border-color: var(--brass);
|
||||
background: rgba(201,162,39,0.06);
|
||||
color: var(--brass-bright);
|
||||
}
|
||||
.footer .partner-item i {
|
||||
font-size: 0.9rem;
|
||||
color: var(--brass);
|
||||
opacity: 0.7;
|
||||
width: 1.2rem;
|
||||
text-align: center;
|
||||
}
|
||||
.fcopy {
|
||||
padding: 1.25rem 0;
|
||||
text-align: center;
|
||||
font-size: 0.82rem;
|
||||
color: rgba(255,255,255,0.35);
|
||||
}
|
||||
.fcopy a { color: rgba(255,255,255,0.4); }
|
||||
.fcopy a:hover { color: var(--brass); }
|
||||
@media (max-width: 768px) {
|
||||
.fgrid { grid-template-columns: 1fr; }
|
||||
.footer { padding-bottom: 5rem; }
|
||||
.footer { padding-top: 2.5rem; padding-bottom: 5rem; }
|
||||
.footer .partner-list { flex-direction: row; flex-wrap: wrap; }
|
||||
}
|
||||
|
||||
/* ---- Blog post pages (legacy dark — maintain backward compatibility) ---- */
|
||||
|
||||
Reference in New Issue
Block a user