You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
swarms/docs/overrides/main.html

420 lines
11 KiB

{% extends "base.html" %}
<!--https://squidfunk.github.io/mkdocs-material/customization/#overriding-blocks-->
{% block announce %}
<div style="text-align:center">
<a href="https://github.com/kyegomez/swarms">Star and contribute</a> to Swarms on GitHub!
</div>
{% endblock %}
{% block footer %}
<footer class="md-footer">
<!-- Custom Footer Links Section -->
<div class="md-footer-custom">
<div class="md-footer-custom__inner md-grid">
<div class="md-footer-links">
{% for section_name, links in config.extra.footer_links.items() %}
<div class="md-footer-links__section">
<h4 class="md-footer-links__title">{{ section_name }}</h4>
<ul class="md-footer-links__list">
{% for link in links %}
<li class="md-footer-links__item{% if loop.index > 4 %} md-footer-links__item--hidden{% endif %}">
<a href="{{ link.url }}" class="md-footer-links__link">
{{ link.title }}
</a>
</li>
{% endfor %}
</ul>
{% if links|length > 4 %}
<button type="button" class="md-footer-links__toggle"
onclick="toggleFooterLinks(this)"
data-text-more="Show {{ links|length - 4 }} more"
data-text-less="Show less">
<span class="md-footer-links__toggle-text">Show {{ links|length - 4 }} more</span>
<span class="md-footer-links__toggle-icon"></span>
</button>
{% endif %}
</div>
{% endfor %}
</div>
</div>
</div>
<!-- Company Information Section -->
<div class="md-footer-company">
<div class="md-footer-company__inner md-grid">
<div class="md-footer-company__content">
<div class="md-footer-company__brand">
<h3 class="md-footer-company__name">Swarms</h3>
<p class="md-footer-company__description">
Automating the world economy with multi-agent collaboration
</p>
</div>
<div class="md-footer-company__copyright">
<p>&copy; 2024 Swarms. All rights reserved.</p>
</div>
</div>
</div>
</div>
<!-- Original Material Footer -->
{{ super() }}
</footer>
{% endblock %}
{% block styles %}
{{ super() }}
<style>
/* Custom Footer Styling - Base */
.md-footer-custom {
padding: 2.4rem 0 1.2rem;
border-top: 0.05rem solid var(--md-default-fg-color--lightest);
}
.md-footer-custom__inner {
margin: 0 auto;
padding: 0 1.2rem;
}
.md-footer-links {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 1.2rem;
max-width: 1220px;
margin: 0 auto;
}
.md-footer-links__section {
min-width: 0;
}
.md-footer-links__title {
font-size: 0.6rem;
font-weight: 700;
margin: 0 0 0.8rem;
text-transform: uppercase;
letter-spacing: 0.1em;
padding-bottom: 0.3rem;
}
.md-footer-links__list {
list-style: none;
margin: 0;
padding: 0;
}
.md-footer-links__item {
margin: 0;
line-height: 1.6;
}
.md-footer-links__link {
text-decoration: none;
font-size: 0.65rem;
display: block;
padding: 0.08rem 0;
transition: color 125ms;
border-radius: 0.1rem;
}
.md-footer-links__link:hover,
.md-footer-links__link:focus {
color: var(--md-accent-fg-color);
}
/* Hidden footer items */
.md-footer-links__item--hidden {
display: none;
}
/* Toggle button styles */
.md-footer-links__toggle {
background: none;
border: 0.05rem solid;
border-radius: 0.15rem;
cursor: pointer;
display: flex;
align-items: center;
gap: 0.25rem;
font-size: 0.58rem;
font-weight: 500;
margin-top: 0.6rem;
padding: 0.3rem 0.6rem;
text-transform: uppercase;
letter-spacing: 0.05em;
transition: all 150ms ease;
width: auto;
min-width: fit-content;
}
.md-footer-links__toggle:hover {
transform: translateY(-1px);
}
.md-footer-links__toggle-icon {
font-size: 0.45rem;
transition: transform 200ms ease;
line-height: 1;
}
.md-footer-links__toggle--expanded .md-footer-links__toggle-icon {
transform: rotate(180deg);
}
/* Light Mode (Default) */
[data-md-color-scheme="default"] .md-footer-custom {
background: #ffffff;
border-top-color: #e1e5e9;
}
[data-md-color-scheme="default"] .md-footer-links__title {
color: #2e3440;
border-bottom: 0.05rem solid #e1e5e9;
}
[data-md-color-scheme="default"] .md-footer-links__link {
color: #636c76;
}
[data-md-color-scheme="default"] .md-footer-links__link:hover,
[data-md-color-scheme="default"] .md-footer-links__link:focus {
color: #1976d2;
}
[data-md-color-scheme="default"] .md-footer-links__toggle {
border-color: #e1e5e9;
color: #636c76;
background: #ffffff;
}
[data-md-color-scheme="default"] .md-footer-links__toggle:hover {
border-color: #1976d2;
color: #1976d2;
background: #f8f9fa;
}
/* Dark Mode (Slate) */
[data-md-color-scheme="slate"] .md-footer-custom {
background: #1F2129;
border-top-color: #404040;
}
[data-md-color-scheme="slate"] .md-footer-links__title {
color: #ffffff;
border-bottom: 0.05rem solid #404040;
}
[data-md-color-scheme="slate"] .md-footer-links__link {
color: #9ca3af;
}
[data-md-color-scheme="slate"] .md-footer-links__link:hover,
[data-md-color-scheme="slate"] .md-footer-links__link:focus {
color: #42a5f5;
}
[data-md-color-scheme="slate"] .md-footer-links__toggle {
border-color: #404040;
color: #9ca3af;
background: #1F2129;
}
[data-md-color-scheme="slate"] .md-footer-links__toggle:hover {
border-color: #42a5f5;
color: #42a5f5;
background: #2a2d38;
}
/* Company Information Section - Base */
.md-footer-company {
padding: 1.5rem 0;
border-top: 0.05rem solid var(--md-default-fg-color--lightest);
}
.md-footer-company__inner {
margin: 0 auto;
padding: 0 1.2rem;
max-width: 1220px;
}
.md-footer-company__content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
}
.md-footer-company__brand {
flex: 1;
min-width: 200px;
}
.md-footer-company__name {
margin: 0 0 0.5rem 0;
font-size: 1.2rem;
font-weight: 700;
letter-spacing: 0.05em;
}
.md-footer-company__description {
margin: 0;
font-size: 0.8rem;
line-height: 1.4;
font-style: italic;
}
.md-footer-company__copyright {
text-align: right;
}
.md-footer-company__copyright p {
margin: 0;
font-size: 0.7rem;
opacity: 0.8;
}
/* Company Section - Light Mode */
[data-md-color-scheme="default"] .md-footer-company {
background: #f8f9fa;
border-top-color: #e1e5e9;
}
[data-md-color-scheme="default"] .md-footer-company__name {
color: #DC143C;
}
[data-md-color-scheme="default"] .md-footer-company__description {
color: #495057;
}
[data-md-color-scheme="default"] .md-footer-company__copyright p {
color: #6c757d;
}
/* Company Section - Dark Mode */
[data-md-color-scheme="slate"] .md-footer-company {
background: #1F2129;
border-top-color: #404040;
}
[data-md-color-scheme="slate"] .md-footer-company__name {
color: #DC143C;
}
[data-md-color-scheme="slate"] .md-footer-company__description {
color: #d1d5db;
}
[data-md-color-scheme="slate"] .md-footer-company__copyright p {
color: #9ca3af;
}
/* Responsive Design */
@media screen and (min-width: 90em) {
.md-footer-links {
max-width: 1400px;
gap: 1.5rem;
}
}
@media screen and (max-width: 76.1875em) {
.md-footer-links {
grid-template-columns: repeat(3, 1fr);
gap: 1rem;
}
.md-footer-custom {
padding: 1.8rem 0 1rem;
}
}
@media screen and (max-width: 59.9375em) {
.md-footer-links {
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
}
.md-footer-links__title {
font-size: 0.62rem;
margin: 0 0 0.9rem;
}
.md-footer-links__link {
font-size: 0.68rem;
padding: 0.1rem 0;
}
}
@media screen and (max-width: 44.9375em) {
.md-footer-links {
grid-template-columns: 1fr;
gap: 1.2rem;
}
.md-footer-custom {
padding: 1.5rem 0 0.8rem;
}
.md-footer-custom__inner {
padding: 0 1rem;
}
.md-footer-links__title {
font-size: 0.65rem;
margin: 0 0 1rem;
}
.md-footer-links__link {
font-size: 0.7rem;
padding: 0.12rem 0;
}
/* Company section mobile styles */
.md-footer-company__content {
flex-direction: column;
text-align: center;
gap: 1rem;
}
.md-footer-company__brand {
min-width: auto;
}
.md-footer-company__copyright {
text-align: center;
}
.md-footer-company__inner {
padding: 0 1rem;
}
}
</style>
<script>
function toggleFooterLinks(button) {
// Find the parent section
const section = button.closest('.md-footer-links__section');
const hiddenItems = section.querySelectorAll('.md-footer-links__item--hidden');
const toggleText = button.querySelector('.md-footer-links__toggle-text');
const isExpanded = button.classList.contains('md-footer-links__toggle--expanded');
if (isExpanded) {
// Hide items
hiddenItems.forEach(item => {
item.style.display = 'none';
});
toggleText.textContent = button.getAttribute('data-text-more');
button.classList.remove('md-footer-links__toggle--expanded');
} else {
// Show items
hiddenItems.forEach(item => {
item.style.display = 'block';
});
toggleText.textContent = button.getAttribute('data-text-less');
button.classList.add('md-footer-links__toggle--expanded');
}
}
</script>
{% endblock %}