mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 13:52:43 +08:00
* update badges * fix badges * better badges * move credits * more badge work * add gh logo * update some copy * update logo * fix height * update text * emdash * remove cruft * move title * update links * add hr * white logo * move some stuff to getting-started * revert logo * more copy changes * minor tweaks * fix sidebar * explicit sidebar * words * fix tag * fix how-to * more docs work * update styles * fix up custom sandbox docs * change eval title * fix up getting-started * fix getting started * update to 0.9.2 * update screenshot * add company link * fix dark mode * minor fixes * update image * update headless and cli docs * update readme * fix links * revert package * rename links * fix links * fix link * chagne to claude
73 lines
1.1 KiB
CSS
73 lines
1.1 KiB
CSS
/* customFooter.css */
|
|
|
|
.custom-footer {
|
|
background-color: dark;
|
|
color: #000;
|
|
height: 100px;
|
|
/* background: linear-gradient(to bottom, #1a1a1a, #1a1a1a); */
|
|
background-color: #F1EAE0;
|
|
|
|
}
|
|
|
|
[data-theme="dark"] .custom-footer {
|
|
background-color: #000;
|
|
color: #fff;
|
|
}
|
|
|
|
|
|
.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 {
|
|
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;
|
|
}
|