Initial commit

This commit is contained in:
Zylan
2025-03-24 17:24:17 +08:00
parent 22c4e27a75
commit 5c09d536f7
5 changed files with 387 additions and 74 deletions

View File

@@ -1383,3 +1383,86 @@ button:disabled {
[data-theme="dark"] .think-budget-group {
background-color: var(--highlight-bg-color-dark);
}
/* Footer Styles */
.app-footer {
background-color: var(--surface);
padding: 1rem;
border-top: 1px solid var(--border-color);
margin-top: auto;
}
.footer-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
}
.footer-text {
color: var(--text-secondary);
font-size: 0.9rem;
}
.footer-links {
display: flex;
align-items: center;
gap: 1.5rem;
}
.footer-link {
display: flex;
align-items: center;
gap: 0.5rem;
color: var(--text-secondary);
text-decoration: none;
font-size: 0.9rem;
transition: color 0.2s ease;
}
.footer-link:hover {
color: var(--primary);
}
.footer-link i {
font-size: 1rem;
}
.star-icon {
font-size: 1rem;
}
.user-counter {
display: flex;
align-items: center;
}
.user-counter img {
height: 20px;
width: auto;
}
@media (max-width: 768px) {
.footer-content {
flex-direction: column;
text-align: center;
}
.footer-links {
flex-wrap: wrap;
justify-content: center;
}
}
@media (max-width: 480px) {
.footer-links {
gap: 1rem;
}
.footer-link {
font-size: 0.8rem;
}
}