init commit

This commit is contained in:
David Melendez
2026-01-14 22:38:44 +01:00
parent 4e0c415f0b
commit e25d53d054
124 changed files with 21653 additions and 1 deletions

View File

@@ -0,0 +1,484 @@
// ==========================================================================
// Footer Layout Styles
// Professional Resume Builder - Footer
// ==========================================================================
.main-footer {
background: linear-gradient(135deg, var(--color-gray-900) 0%, var(--color-gray-800) 100%);
color: var(--color-gray-300);
padding: var(--spacing-4xl) 0 var(--spacing-xl);
margin-top: auto;
.footer-content {
.footer-brand {
margin-bottom: var(--spacing-xl);
.brand-logo {
display: flex;
align-items: center;
margin-bottom: var(--spacing-md);
.brand-icon {
width: 3rem;
height: 3rem;
border-radius: var(--border-radius-lg);
background: var(--brand-gradient);
color: var(--color-white);
display: flex;
align-items: center;
justify-content: center;
margin-right: var(--spacing-md);
font-size: 1.5rem;
box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
}
.brand-text {
font-size: 1.5rem;
font-weight: 700;
color: var(--color-white);
}
}
.brand-description {
color: var(--color-gray-400);
line-height: 1.6;
max-width: 300px;
}
}
.footer-links {
.footer-section {
margin-bottom: var(--spacing-xl);
h6 {
color: var(--color-white);
font-weight: 600;
font-size: 1rem;
margin-bottom: var(--spacing-md);
text-transform: uppercase;
letter-spacing: 0.05em;
}
ul {
list-style: none;
padding: 0;
margin: 0;
li {
margin-bottom: 0.5rem;
a {
color: var(--color-gray-400);
text-decoration: none;
font-size: 0.9rem;
transition: all 0.2s ease;
display: inline-flex;
align-items: center;
&:hover {
color: var(--color-white);
transform: translateX(4px);
}
i {
margin-right: 0.5rem;
width: 1rem;
color: var(--brand-primary);
}
}
}
}
}
}
.footer-contact {
.contact-item {
display: flex;
align-items: center;
margin-bottom: var(--spacing-md);
.contact-icon {
width: 2.5rem;
height: 2.5rem;
border-radius: var(--border-radius-md);
background: rgba(102, 126, 234, 0.1);
color: var(--brand-primary);
display: flex;
align-items: center;
justify-content: center;
margin-right: var(--spacing-md);
font-size: 1rem;
}
.contact-info {
.contact-label {
font-size: 0.8rem;
color: var(--color-gray-500);
text-transform: uppercase;
letter-spacing: 0.05em;
margin-bottom: 0.125rem;
}
.contact-value {
color: var(--color-gray-300);
font-size: 0.9rem;
margin: 0;
a {
color: inherit;
text-decoration: none;
transition: color 0.2s ease;
&:hover {
color: var(--color-white);
}
}
}
}
}
}
.footer-social {
.social-links {
display: flex;
gap: var(--spacing-sm);
margin-bottom: var(--spacing-lg);
a {
width: 2.75rem;
height: 2.75rem;
border-radius: var(--border-radius-md);
background: rgba(255, 255, 255, 0.1);
color: var(--color-gray-300);
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
font-size: 1.125rem;
transition: all 0.3s ease;
&:hover {
background: var(--brand-primary);
color: var(--color-white);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}
&.facebook:hover {
background: #3b5998;
}
&.twitter:hover {
background: #1da1f2;
}
&.linkedin:hover {
background: #0077b5;
}
&.github:hover {
background: #333;
}
&.instagram:hover {
background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}
}
}
.newsletter {
.newsletter-title {
color: var(--color-white);
font-weight: 600;
margin-bottom: var(--spacing-sm);
font-size: 1rem;
}
.newsletter-description {
color: var(--color-gray-400);
font-size: 0.875rem;
margin-bottom: var(--spacing-md);
}
.newsletter-form {
display: flex;
gap: 0.5rem;
.form-control {
flex: 1;
border: 1px solid rgba(255, 255, 255, 0.2);
background: rgba(255, 255, 255, 0.1);
color: var(--color-white);
border-radius: var(--border-radius-md);
padding: 0.75rem 1rem;
&::placeholder {
color: rgba(255, 255, 255, 0.6);
}
&:focus {
border-color: var(--brand-primary);
background: rgba(255, 255, 255, 0.15);
box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}
}
.btn {
background: var(--brand-gradient);
border: none;
color: var(--color-white);
padding: 0.75rem 1.5rem;
border-radius: var(--border-radius-md);
font-weight: 500;
transition: all 0.2s ease;
&:hover {
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}
}
}
}
}
}
.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding-top: var(--spacing-lg);
margin-top: var(--spacing-xl);
.footer-copyright {
color: var(--color-gray-500);
font-size: 0.875rem;
margin: 0;
a {
color: var(--brand-primary);
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
}
.footer-legal {
.legal-links {
display: flex;
gap: var(--spacing-lg);
list-style: none;
padding: 0;
margin: 0;
a {
color: var(--color-gray-500);
text-decoration: none;
font-size: 0.875rem;
transition: color 0.2s ease;
&:hover {
color: var(--color-white);
}
}
}
}
}
}
// Minimal footer variant
.footer-minimal {
background: var(--color-white);
border-top: 1px solid var(--color-gray-100);
padding: var(--spacing-lg) 0;
.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
.footer-text {
color: var(--color-gray-600);
font-size: 0.875rem;
margin: 0;
}
.footer-links {
display: flex;
gap: var(--spacing-lg);
list-style: none;
padding: 0;
margin: 0;
a {
color: var(--color-gray-600);
text-decoration: none;
font-size: 0.875rem;
transition: color 0.2s ease;
&:hover {
color: var(--brand-primary);
}
}
}
}
}
// Auth footer (for login/register pages)
.auth-footer {
background: transparent;
padding: var(--spacing-lg) 0;
text-align: center;
margin-top: auto;
.footer-text {
color: var(--color-gray-600);
font-size: 0.875rem;
margin-bottom: var(--spacing-md);
}
.footer-links {
display: flex;
justify-content: center;
gap: var(--spacing-lg);
list-style: none;
padding: 0;
margin: 0;
a {
color: var(--brand-primary);
text-decoration: none;
font-size: 0.875rem;
font-weight: 500;
transition: color 0.2s ease;
&:hover {
color: var(--brand-primary-dark);
text-decoration: underline;
}
}
}
}
// Responsive design
@include media-breakpoint-down(lg) {
.main-footer {
.footer-content {
.footer-links {
.footer-section {
margin-bottom: var(--spacing-lg);
}
}
.footer-social {
margin-top: var(--spacing-xl);
.social-links {
justify-content: center;
}
.newsletter-form {
flex-direction: column;
.form-control {
margin-bottom: 0.5rem;
}
.btn {
width: 100%;
}
}
}
}
.footer-bottom {
text-align: center;
.footer-legal {
margin-top: var(--spacing-md);
.legal-links {
justify-content: center;
flex-wrap: wrap;
}
}
}
}
.footer-minimal {
.footer-content {
flex-direction: column;
text-align: center;
gap: var(--spacing-md);
.footer-links {
justify-content: center;
flex-wrap: wrap;
}
}
}
}
@include media-breakpoint-down(md) {
.main-footer {
padding: var(--spacing-2xl) 0 var(--spacing-lg);
.footer-content {
.footer-brand {
text-align: center;
.brand-description {
margin: 0 auto;
}
}
.footer-links {
text-align: center;
}
.footer-contact {
text-align: center;
.contact-item {
justify-content: center;
}
}
}
}
.auth-footer {
.footer-links {
flex-direction: column;
gap: var(--spacing-sm);
}
}
}
// Footer animations
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.footer-animate {
.footer-section {
animation: fadeInUp 0.6s ease-out;
&:nth-child(2) {
animation-delay: 0.1s;
}
&:nth-child(3) {
animation-delay: 0.2s;
}
&:nth-child(4) {
animation-delay: 0.3s;
}
}
}

View File

@@ -0,0 +1,478 @@
// ==========================================================================
// Header Layout Styles
// Professional Resume Builder - Header/Navigation
// ==========================================================================
// Main navigation
.main-navbar {
background: var(--color-white);
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.06), 0 1px 2px -1px rgba(0, 0, 0, 0.06);
padding: 0.5rem 0;
position: sticky;
top: 0;
z-index: 1030;
transition: all 0.3s ease;
&.scrolled {
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.navbar-brand {
font-weight: 700;
font-size: 1.5rem;
color: var(--brand-primary);
text-decoration: none;
display: flex;
align-items: center;
transition: all 0.2s ease;
&:hover {
color: var(--brand-primary-dark);
transform: scale(1.02);
}
.brand-icon {
width: 2.5rem;
height: 2.5rem;
border-radius: var(--border-radius-md);
background: var(--brand-gradient);
color: var(--color-white);
display: flex;
align-items: center;
justify-content: center;
margin-right: 0.75rem;
font-size: 1.25rem;
box-shadow: 0 4px 8px rgba(102, 126, 234, 0.3);
}
}
.navbar-nav {
.nav-link {
font-weight: 500;
color: var(--color-gray-700);
padding: 0.625rem 1rem;
border-radius: var(--border-radius-md);
transition: all 0.2s ease;
position: relative;
&:hover {
color: var(--brand-primary);
background-color: rgba(102, 126, 234, 0.1);
}
&.active {
color: var(--brand-primary);
font-weight: 600;
&::after {
content: '';
position: absolute;
bottom: -0.5rem;
left: 50%;
transform: translateX(-50%);
width: 20px;
height: 2px;
background: var(--brand-primary);
border-radius: var(--border-radius-full);
}
}
i {
margin-right: 0.5rem;
font-size: 1rem;
}
}
}
.navbar-toggler {
border: none;
padding: 0.375rem 0.5rem;
border-radius: var(--border-radius-md);
transition: all 0.2s ease;
&:focus {
box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.1);
}
&:hover {
background-color: rgba(102, 126, 234, 0.1);
}
.navbar-toggler-icon {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28102, 126, 234, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
}
}
// User dropdown
.user-dropdown {
.dropdown-toggle {
border: none;
background: transparent;
padding: 0.375rem;
border-radius: var(--border-radius-full);
transition: all 0.2s ease;
display: flex;
align-items: center;
&:hover {
background-color: rgba(102, 126, 234, 0.1);
}
&::after {
display: none;
}
.user-avatar {
width: 2.5rem;
height: 2.5rem;
border-radius: 50%;
border: 2px solid var(--color-white);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
object-fit: cover;
margin-right: 0.5rem;
}
.user-info {
text-align: left;
.user-name {
font-size: 0.875rem;
font-weight: 600;
color: var(--color-dark);
line-height: 1.2;
margin: 0;
}
.user-role {
font-size: 0.75rem;
color: var(--color-gray-600);
line-height: 1.2;
margin: 0;
}
}
.dropdown-arrow {
margin-left: 0.5rem;
color: var(--color-gray-400);
transition: transform 0.2s ease;
}
&[aria-expanded="true"] {
.dropdown-arrow {
transform: rotate(180deg);
}
}
}
.dropdown-menu {
border: none;
border-radius: var(--border-radius-lg);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
padding: 0.5rem;
min-width: 200px;
margin-top: 0.5rem;
.dropdown-item {
border-radius: var(--border-radius-md);
padding: 0.625rem 1rem;
font-weight: 400;
color: var(--color-gray-700);
transition: all 0.2s ease;
display: flex;
align-items: center;
&:hover {
background-color: var(--color-gray-50);
color: var(--color-dark);
}
&:active {
background-color: var(--color-gray-100);
}
i {
margin-right: 0.75rem;
width: 1rem;
color: var(--color-gray-500);
}
&.text-danger {
color: var(--brand-danger);
&:hover {
background-color: rgba(239, 68, 68, 0.1);
color: var(--brand-danger);
}
i {
color: var(--brand-danger);
}
}
}
.dropdown-divider {
border-color: var(--color-gray-100);
margin: 0.5rem 0;
}
}
}
// Notification badge
.notification-badge {
position: relative;
.badge {
position: absolute;
top: -0.375rem;
right: -0.375rem;
background: var(--brand-danger);
color: var(--color-white);
font-size: 0.625rem;
padding: 0.25rem 0.375rem;
border-radius: var(--border-radius-full);
font-weight: 600;
min-width: 1.125rem;
height: 1.125rem;
display: flex;
align-items: center;
justify-content: center;
border: 2px solid var(--color-white);
}
}
// Search bar in header
.header-search {
position: relative;
max-width: 400px;
margin: 0 auto;
.search-input {
width: 100%;
padding: 0.625rem 1rem 0.625rem 2.75rem;
border: 2px solid var(--color-gray-200);
border-radius: var(--border-radius-full);
background: var(--color-white);
transition: all 0.2s ease;
font-size: 0.9rem;
&:focus {
border-color: var(--brand-primary);
box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.1);
outline: none;
}
&::placeholder {
color: var(--color-gray-500);
}
}
.search-icon {
position: absolute;
left: 1rem;
top: 50%;
transform: translateY(-50%);
color: var(--color-gray-400);
z-index: 3;
}
.search-results {
position: absolute;
top: calc(100% + 0.5rem);
left: 0;
right: 0;
background: var(--color-white);
border-radius: var(--border-radius-lg);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
max-height: 300px;
overflow-y: auto;
z-index: 1050;
display: none;
&.show {
display: block;
}
.search-item {
padding: 0.75rem 1rem;
border-bottom: 1px solid var(--color-gray-100);
cursor: pointer;
transition: background-color 0.2s ease;
&:hover {
background-color: var(--color-gray-50);
}
&:last-child {
border-bottom: none;
}
.item-title {
font-weight: 500;
color: var(--color-dark);
margin-bottom: 0.25rem;
}
.item-description {
font-size: 0.875rem;
color: var(--color-gray-600);
}
}
}
}
// Breadcrumb
.custom-breadcrumb {
background: transparent;
padding: 0;
margin-bottom: var(--spacing-lg);
.breadcrumb {
background: transparent;
padding: 0;
margin: 0;
.breadcrumb-item {
font-size: 0.875rem;
color: var(--color-gray-600);
&.active {
color: var(--color-gray-800);
font-weight: 500;
}
a {
color: var(--brand-primary);
text-decoration: none;
transition: color 0.2s ease;
&:hover {
color: var(--brand-primary-dark);
text-decoration: underline;
}
}
&::before {
color: var(--color-gray-400);
}
i {
margin-right: 0.25rem;
}
}
}
}
// Mobile navigation
@include media-breakpoint-down(lg) {
.main-navbar {
.navbar-collapse {
margin-top: 1rem;
padding: 1rem;
background: var(--color-white);
border-radius: var(--border-radius-lg);
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
.navbar-nav {
.nav-link {
padding: 0.875rem 1rem;
margin-bottom: 0.25rem;
&.active::after {
display: none;
}
&.active {
background-color: rgba(102, 126, 234, 0.1);
}
}
}
}
.navbar-brand {
.brand-icon {
width: 2rem;
height: 2rem;
font-size: 1rem;
}
}
}
.user-dropdown {
margin-top: var(--spacing-md);
padding-top: var(--spacing-md);
border-top: 1px solid var(--color-gray-100);
.dropdown-toggle {
width: 100%;
justify-content: space-between;
padding: 0.75rem 1rem;
background-color: var(--color-gray-50);
border-radius: var(--border-radius-md);
.user-info {
text-align: left;
}
}
.dropdown-menu {
position: static;
box-shadow: none;
border: none;
background: transparent;
padding: 0;
margin-top: 0.5rem;
.dropdown-item {
background: var(--color-white);
margin-bottom: 0.25rem;
border-radius: var(--border-radius-md);
&:hover {
background-color: var(--color-gray-50);
}
}
}
}
.header-search {
margin: var(--spacing-md) 0;
.search-input {
font-size: 1rem;
padding: 0.75rem 1rem 0.75rem 3rem;
}
.search-icon {
left: 1.125rem;
}
}
}
// Header animations
@keyframes slideDown {
from {
opacity: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.navbar-collapse.collapsing,
.navbar-collapse.show {
animation: slideDown 0.3s ease-out;
}
// Sticky header behavior
.header-hidden {
transform: translateY(-100%);
transition: transform 0.3s ease-in-out;
}
.header-visible {
transform: translateY(0);
transition: transform 0.3s ease-in-out;
}