This commit is contained in:
MeysamMoghaddam
2025-10-07 00:39:38 +03:30
parent 8c03d00a4b
commit b26225d8a6
15 changed files with 646 additions and 179 deletions

View File

@@ -40,3 +40,115 @@
src: url(../fonts/Vazir-Bold.ttf) format('woff2');
}
/*#endregion*/
/*#region Layout Styles*/
html, body {
height: 100%;
}
.mud-layout {
min-height: 100vh;
display: flex;
flex-direction: column;
}
.mud-main-content {
flex: 1;
display: flex;
flex-direction: column;
}
.mud-main-content > div:first-child {
flex: 1;
}
/*#endregion*/
/*#region Footer Styles*/
.footer-section {
background: var(--mud-palette-surface);
border-top: 1px solid var(--mud-palette-divider);
margin-top: auto;
}
.footer-title {
color: var(--mud-palette-text-primary);
margin-bottom: 1rem;
}
.footer-description {
color: var(--mud-palette-text-secondary);
line-height: 1.6;
}
.footer-link {
color: var(--mud-palette-text-secondary);
text-decoration: none;
transition: color 0.3s ease;
display: block;
padding: 0.25rem 0;
}
.footer-link:hover {
color: var(--mud-palette-primary);
text-decoration: none;
}
.footer-contact {
color: var(--mud-palette-text-secondary);
}
.footer-copyright {
color: var(--mud-palette-text-secondary);
}
.social-links .social-icon {
transition: transform 0.3s ease, color 0.3s ease;
}
.social-links .social-icon:hover {
transform: translateY(-2px);
color: var(--mud-palette-primary);
}
.newsletter-section {
background: var(--mud-palette-background-grey);
}
.newsletter-form {
align-items: center;
}
.newsletter-btn {
white-space: nowrap;
}
.footer-legal {
flex-wrap: wrap;
}
@media (max-width: 960px) {
.footer-legal {
justify-content: flex-start !important;
margin-top: 1rem;
}
.newsletter-form {
flex-direction: column;
align-items: stretch;
}
.newsletter-btn {
margin-top: 0.5rem;
}
}
/* Dark mode adjustments */
.mud-theme-dark .footer-section {
background: var(--mud-palette-dark-background);
border-top-color: var(--mud-palette-dark-divider);
}
.mud-theme-dark .newsletter-section {
background: var(--mud-palette-dark-surface);
}
/*#endregion*/