mirror of
https://github.com/All-Hands-AI/OpenHands.git
synced 2026-04-29 03:00:45 -04:00
* fix #2123 * Docs enhancement * Update docs/src/components/CustomFooter.tsx Co-authored-by: sp.wack <83104063+amanape@users.noreply.github.com> * Update docs/src/components/CustomFooter.tsx Co-authored-by: sp.wack <83104063+amanape@users.noreply.github.com> * Update docs/src/pages/faq.tsx Co-authored-by: sp.wack <83104063+amanape@users.noreply.github.com> * update * fix for #2138 pr * Update docs/src/components/CustomFooter.tsx Co-authored-by: Graham Neubig <neubig@gmail.com> * Update docs/src/components/HomepageHeader/HomepageHeader.tsx Co-authored-by: Graham Neubig <neubig@gmail.com> * Update docs/src/components/Welcome/Welcome.tsx Co-authored-by: Graham Neubig <neubig@gmail.com> * Update docs/src/css/custom.css Co-authored-by: Graham Neubig <neubig@gmail.com> --------- Co-authored-by: sp.wack <83104063+amanape@users.noreply.github.com> Co-authored-by: Graham Neubig <neubig@gmail.com>
72 lines
1.2 KiB
CSS
72 lines
1.2 KiB
CSS
/* customFooter.css */
|
|
|
|
.custom-footer {
|
|
background-color: dark;
|
|
color: white;
|
|
height: 25vh;
|
|
/* background: linear-gradient(to bottom, #1a1a1a, #1a1a1a); */
|
|
background: linear-gradient(to bottom, #1f2937, #000000);
|
|
|
|
}
|
|
|
|
.footer-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 8px;
|
|
height: 100%;
|
|
}
|
|
|
|
.footer-top {
|
|
display: flex;
|
|
gap: 8px;
|
|
align-items: center;
|
|
}
|
|
|
|
.footer-title {
|
|
font-weight: bold;
|
|
font-size: 1.125rem;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.footer-title {
|
|
font-size: 1.875rem;
|
|
}
|
|
}
|
|
|
|
.footer-link a {
|
|
font-size: 0.875rem;
|
|
text-decoration: none;
|
|
color: gray;
|
|
transition: color 0.3s ease;
|
|
}
|
|
|
|
.footer-link a:hover {
|
|
color: white;
|
|
}
|
|
|
|
.footer-community {
|
|
text-transform: uppercase;
|
|
font-weight: 300;
|
|
}
|
|
|
|
.footer-icons {
|
|
display: flex;
|
|
gap: 24px;
|
|
font-size: 1.875rem;
|
|
}
|
|
|
|
.footer-icons a {
|
|
color:gray;
|
|
transition: color 0.3s ease;
|
|
}
|
|
|
|
.footer-icons a:hover {
|
|
color: white;
|
|
}
|
|
|
|
.footer-bottom {
|
|
text-transform: uppercase;
|
|
}
|
|
|