init commit
This commit is contained in:
570
resources/sass/pages/_dashboard-old.scss
Normal file
570
resources/sass/pages/_dashboard-old.scss
Normal file
@@ -0,0 +1,570 @@
|
||||
/**
|
||||
* Dashboard Page Styles - Enterprise SCSS Architecture
|
||||
* Professional Resume Builder
|
||||
*
|
||||
* @author David Valera Melendez <david@valera-melendez.de>
|
||||
* @created 2025-08-08
|
||||
* @location Made in Germany 🇩🇪
|
||||
*/
|
||||
|
||||
// ==========================================================================
|
||||
// Dashboard Container
|
||||
// ==========================================================================
|
||||
.dashboard-container {
|
||||
padding: $spacing-lg 0;
|
||||
|
||||
@include media-down($breakpoint-md) {
|
||||
padding: $spacing-base 0;
|
||||
}
|
||||
}
|
||||
|
||||
// ==========================================================================
|
||||
// Hero Section
|
||||
// ==========================================================================
|
||||
.hero-section {
|
||||
margin-bottom: $spacing-4xl;
|
||||
|
||||
.hero-card {
|
||||
@include card-base;
|
||||
background: $gradient-primary;
|
||||
color: $white;
|
||||
border-radius: $radius-2xl;
|
||||
box-shadow: $shadow-2xl;
|
||||
border: none;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
|
||||
&::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
@include grid-pattern(60px, rgba(255, 255, 255, 0.1));
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.card-body {
|
||||
padding: $spacing-4xl;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
|
||||
@include media-down($breakpoint-md) {
|
||||
padding: $spacing-3xl $spacing-lg;
|
||||
}
|
||||
}
|
||||
|
||||
.hero-content {
|
||||
text-align: center;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.hero-icon {
|
||||
margin-bottom: $spacing-xl;
|
||||
|
||||
.large-icon {
|
||||
font-size: 4rem;
|
||||
transition: all $transition-base;
|
||||
|
||||
&:hover {
|
||||
transform: scale(1.1) rotate(5deg);
|
||||
}
|
||||
|
||||
@include media-down($breakpoint-md) {
|
||||
font-size: 3rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.hero-title {
|
||||
font-size: $font-size-4xl;
|
||||
font-weight: $font-weight-bold;
|
||||
margin-bottom: $spacing-lg;
|
||||
text-shadow: 0 2px 4px rgba($black, 0.2);
|
||||
|
||||
@include media-down($breakpoint-md) {
|
||||
font-size: $font-size-3xl;
|
||||
}
|
||||
}
|
||||
|
||||
.hero-subtitle {
|
||||
font-size: $font-size-lg;
|
||||
opacity: 0.9;
|
||||
margin-bottom: $spacing-lg;
|
||||
font-weight: $font-weight-light;
|
||||
|
||||
@include media-down($breakpoint-md) {
|
||||
font-size: $font-size-base;
|
||||
}
|
||||
}
|
||||
|
||||
.author-signature {
|
||||
font-size: $font-size-base;
|
||||
opacity: 0.8;
|
||||
margin-bottom: $spacing-2xl;
|
||||
font-weight: $font-weight-medium;
|
||||
}
|
||||
|
||||
.hero-actions {
|
||||
@include flex-center;
|
||||
gap: $spacing-lg;
|
||||
flex-wrap: wrap;
|
||||
|
||||
@include media-down($breakpoint-md) {
|
||||
flex-direction: column;
|
||||
gap: $spacing-base;
|
||||
|
||||
.btn {
|
||||
width: 100%;
|
||||
max-width: 300px;
|
||||
}
|
||||
}
|
||||
|
||||
.btn {
|
||||
@include button-base;
|
||||
padding: $spacing-md $spacing-xl;
|
||||
font-size: $font-size-base;
|
||||
font-weight: $font-weight-semibold;
|
||||
border-radius: $radius-md;
|
||||
transition: all $transition-base;
|
||||
|
||||
&.btn-light {
|
||||
background-color: $white;
|
||||
color: $primary-color;
|
||||
|
||||
&:hover {
|
||||
background-color: rgba($white, 0.9);
|
||||
transform: translateY(-2px);
|
||||
box-shadow: $shadow-lg;
|
||||
}
|
||||
}
|
||||
|
||||
&.btn-outline-light {
|
||||
background-color: transparent;
|
||||
color: $white;
|
||||
border: 2px solid rgba($white, 0.8);
|
||||
|
||||
&:hover {
|
||||
background-color: rgba($white, 0.1);
|
||||
border-color: $white;
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// ==========================================================================
|
||||
// Stats Section
|
||||
// ==========================================================================
|
||||
.stats-section {
|
||||
margin-bottom: $spacing-4xl;
|
||||
|
||||
.stat-card {
|
||||
@include card-base;
|
||||
@include card-hover;
|
||||
border: none;
|
||||
height: 100%;
|
||||
transition: all $transition-base;
|
||||
|
||||
&:hover {
|
||||
transform: translateY(-8px);
|
||||
box-shadow: $shadow-xl;
|
||||
|
||||
.stat-icon {
|
||||
transform: scale(1.1) rotate(5deg);
|
||||
}
|
||||
}
|
||||
|
||||
.card-body {
|
||||
padding: $spacing-2xl;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.stat-icon {
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
@include flex-center;
|
||||
margin: 0 auto $spacing-lg auto;
|
||||
border-radius: $radius-full;
|
||||
transition: all $transition-base;
|
||||
|
||||
i {
|
||||
font-size: $font-size-2xl;
|
||||
}
|
||||
|
||||
&.bg-primary {
|
||||
background: linear-gradient(135deg, $primary-color, lighten($primary-color, 10%));
|
||||
}
|
||||
|
||||
&.bg-success {
|
||||
background: linear-gradient(135deg, $success-color, lighten($success-color, 10%));
|
||||
}
|
||||
|
||||
&.bg-warning {
|
||||
background: linear-gradient(135deg, $warning-color, lighten($warning-color, 10%));
|
||||
}
|
||||
|
||||
&.bg-info {
|
||||
background: linear-gradient(135deg, $info-color, lighten($info-color, 10%));
|
||||
}
|
||||
}
|
||||
|
||||
.stat-number {
|
||||
font-size: $font-size-3xl;
|
||||
font-weight: $font-weight-bold;
|
||||
margin-bottom: $spacing-xs;
|
||||
line-height: 1;
|
||||
|
||||
&.text-primary { color: $primary-color; }
|
||||
&.text-success { color: $success-color; }
|
||||
&.text-warning { color: $warning-color; }
|
||||
&.text-info { color: $info-color; }
|
||||
|
||||
@include media-down($breakpoint-md) {
|
||||
font-size: $font-size-2xl;
|
||||
}
|
||||
}
|
||||
|
||||
.stat-label {
|
||||
font-size: $font-size-base;
|
||||
color: $text-muted;
|
||||
font-weight: $font-weight-medium;
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// ==========================================================================
|
||||
// Features Section
|
||||
// ==========================================================================
|
||||
.features-section {
|
||||
margin-bottom: $spacing-4xl;
|
||||
|
||||
.section-title {
|
||||
font-size: $font-size-3xl;
|
||||
font-weight: $font-weight-semibold;
|
||||
color: $text-primary;
|
||||
margin-bottom: $spacing-sm;
|
||||
|
||||
@include media-down($breakpoint-md) {
|
||||
font-size: $font-size-2xl;
|
||||
}
|
||||
}
|
||||
|
||||
.section-subtitle {
|
||||
font-size: $font-size-lg;
|
||||
color: $text-muted;
|
||||
margin-bottom: $spacing-2xl;
|
||||
}
|
||||
|
||||
.feature-card {
|
||||
@include card-base;
|
||||
@include card-hover;
|
||||
border: none;
|
||||
height: 100%;
|
||||
transition: all $transition-base;
|
||||
|
||||
&:hover {
|
||||
transform: translateY(-8px);
|
||||
box-shadow: $shadow-xl;
|
||||
|
||||
.feature-avatar {
|
||||
transform: scale(1.1);
|
||||
}
|
||||
}
|
||||
|
||||
.card-body {
|
||||
padding: $spacing-2xl;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.feature-avatar {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
@include flex-center;
|
||||
margin: 0 auto $spacing-lg auto;
|
||||
border-radius: $radius-full;
|
||||
background-color: rgba($primary-color, 0.1);
|
||||
transition: all $transition-base;
|
||||
|
||||
i {
|
||||
font-size: $font-size-3xl;
|
||||
color: $primary-color;
|
||||
}
|
||||
}
|
||||
|
||||
.card-title {
|
||||
font-size: $font-size-xl;
|
||||
font-weight: $font-weight-semibold;
|
||||
color: $text-primary;
|
||||
margin-bottom: $spacing-lg;
|
||||
}
|
||||
|
||||
.card-text {
|
||||
font-size: $font-size-base;
|
||||
color: $text-muted;
|
||||
line-height: $line-height-relaxed;
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// ==========================================================================
|
||||
// Recent Activity Section
|
||||
// ==========================================================================
|
||||
.recent-activity-section {
|
||||
margin-bottom: $spacing-4xl;
|
||||
|
||||
.card {
|
||||
@include card-base;
|
||||
border: none;
|
||||
|
||||
.card-header {
|
||||
background: transparent;
|
||||
border: none;
|
||||
padding: $spacing-xl $spacing-xl 0 $spacing-xl;
|
||||
|
||||
.card-title {
|
||||
font-size: $font-size-xl;
|
||||
font-weight: $font-weight-semibold;
|
||||
color: $text-primary;
|
||||
margin: 0;
|
||||
|
||||
i {
|
||||
color: $primary-color;
|
||||
margin-right: $spacing-sm;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.card-body {
|
||||
padding: $spacing-lg $spacing-xl $spacing-xl $spacing-xl;
|
||||
}
|
||||
}
|
||||
|
||||
.activity-item {
|
||||
padding: $spacing-lg;
|
||||
border: 2px solid $border-color;
|
||||
border-radius: $radius-md;
|
||||
background-color: rgba($gray-50, 0.5);
|
||||
transition: all $transition-base;
|
||||
|
||||
&:hover {
|
||||
background-color: rgba($gray-100, 0.8);
|
||||
border-color: $border-color-hover;
|
||||
transform: translateX(4px);
|
||||
}
|
||||
|
||||
h6 {
|
||||
font-size: $font-size-base;
|
||||
font-weight: $font-weight-semibold;
|
||||
color: $text-primary;
|
||||
margin-bottom: $spacing-xs;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: $font-size-sm;
|
||||
color: $text-muted;
|
||||
margin-bottom: $spacing-sm;
|
||||
}
|
||||
|
||||
.text-muted {
|
||||
&.small {
|
||||
font-size: $font-size-xs;
|
||||
|
||||
i {
|
||||
margin-right: $spacing-xs;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// ==========================================================================
|
||||
// Quick Actions Section
|
||||
// ==========================================================================
|
||||
.quick-actions-section {
|
||||
.card {
|
||||
@include card-base;
|
||||
border: none;
|
||||
|
||||
.card-header {
|
||||
background: transparent;
|
||||
border: none;
|
||||
padding: $spacing-xl $spacing-xl 0 $spacing-xl;
|
||||
|
||||
.card-title {
|
||||
font-size: $font-size-xl;
|
||||
font-weight: $font-weight-semibold;
|
||||
color: $text-primary;
|
||||
margin: 0;
|
||||
|
||||
i {
|
||||
color: $primary-color;
|
||||
margin-right: $spacing-sm;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.card-body {
|
||||
padding: $spacing-lg $spacing-xl $spacing-xl $spacing-xl;
|
||||
}
|
||||
}
|
||||
|
||||
.action-card {
|
||||
@include card-base;
|
||||
text-decoration: none;
|
||||
height: 100%;
|
||||
transition: all $transition-base;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
|
||||
&.border-primary {
|
||||
border-color: rgba($primary-color, 0.3);
|
||||
|
||||
&:hover {
|
||||
border-color: $primary-color;
|
||||
background-color: rgba($primary-color, 0.02);
|
||||
transform: translateY(-8px) scale(1.02);
|
||||
box-shadow: $shadow-xl;
|
||||
|
||||
i {
|
||||
transform: scale(1.2) rotate(10deg);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.border-success {
|
||||
border-color: rgba($success-color, 0.3);
|
||||
|
||||
&:hover {
|
||||
border-color: $success-color;
|
||||
background-color: rgba($success-color, 0.02);
|
||||
transform: translateY(-8px) scale(1.02);
|
||||
box-shadow: $shadow-xl;
|
||||
|
||||
i {
|
||||
transform: scale(1.2) rotate(-10deg);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.border-warning {
|
||||
border-color: rgba($warning-color, 0.3);
|
||||
|
||||
&:hover {
|
||||
border-color: $warning-color;
|
||||
background-color: rgba($warning-color, 0.02);
|
||||
transform: translateY(-8px) scale(1.02);
|
||||
box-shadow: $shadow-xl;
|
||||
|
||||
i {
|
||||
transform: scale(1.2) rotate(5deg);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.card-body {
|
||||
padding: $spacing-2xl;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
i {
|
||||
font-size: 4rem;
|
||||
margin-bottom: $spacing-lg;
|
||||
transition: all $transition-base;
|
||||
|
||||
&.text-primary { color: $primary-color; }
|
||||
&.text-success { color: $success-color; }
|
||||
&.text-warning { color: $warning-color; }
|
||||
}
|
||||
|
||||
h6 {
|
||||
font-size: $font-size-base;
|
||||
font-weight: $font-weight-semibold;
|
||||
margin-bottom: $spacing-sm;
|
||||
|
||||
&.text-primary { color: $primary-color; }
|
||||
&.text-success { color: $success-color; }
|
||||
&.text-warning { color: $warning-color; }
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: $font-size-sm;
|
||||
color: $text-muted;
|
||||
margin: 0;
|
||||
line-height: $line-height-normal;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// ==========================================================================
|
||||
// Animations
|
||||
// ==========================================================================
|
||||
@keyframes fadeInUp {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translateY(30px);
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
.dashboard-container > section {
|
||||
animation: fadeInUp 0.6s ease-out;
|
||||
|
||||
&:nth-child(1) { animation-delay: 0; }
|
||||
&:nth-child(2) { animation-delay: 0.1s; }
|
||||
&:nth-child(3) { animation-delay: 0.2s; }
|
||||
&:nth-child(4) { animation-delay: 0.3s; }
|
||||
&:nth-child(5) { animation-delay: 0.4s; }
|
||||
}
|
||||
|
||||
// ==========================================================================
|
||||
// Responsive Design
|
||||
// ==========================================================================
|
||||
@include media-down($breakpoint-lg) {
|
||||
.features-section {
|
||||
.feature-card {
|
||||
margin-bottom: $spacing-xl;
|
||||
}
|
||||
}
|
||||
|
||||
.quick-actions-section {
|
||||
.action-card {
|
||||
margin-bottom: $spacing-lg;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@include media-down($breakpoint-md) {
|
||||
.dashboard-container {
|
||||
padding: $spacing-base 0;
|
||||
}
|
||||
|
||||
.stats-section,
|
||||
.features-section,
|
||||
.recent-activity-section {
|
||||
margin-bottom: $spacing-2xl;
|
||||
}
|
||||
|
||||
.hero-section {
|
||||
margin-bottom: $spacing-2xl;
|
||||
}
|
||||
|
||||
.stat-card,
|
||||
.feature-card {
|
||||
margin-bottom: $spacing-lg;
|
||||
}
|
||||
|
||||
.recent-activity-section {
|
||||
.activity-item {
|
||||
margin-bottom: $spacing-base;
|
||||
}
|
||||
}
|
||||
}
|
||||
357
resources/sass/pages/_dashboard.scss
Normal file
357
resources/sass/pages/_dashboard.scss
Normal file
@@ -0,0 +1,357 @@
|
||||
/**
|
||||
* Dashboard/Home Page - Professional Bootstrap Design
|
||||
* Clean professional homepage styling
|
||||
*
|
||||
* @author David Valera Melendez <david@valera-melendez.de>
|
||||
* @created 2025-08-08
|
||||
* @location Made in Germany 🇩🇪
|
||||
*/
|
||||
|
||||
/* ==========================================================================
|
||||
Home Container & Layout (Matching Angular)
|
||||
========================================================================== */
|
||||
|
||||
.home-container {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
padding: 32px 24px 0 24px;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Hero Section (Exact Angular Material Match)
|
||||
========================================================================== */
|
||||
|
||||
.hero-section {
|
||||
margin-bottom: 48px;
|
||||
}
|
||||
|
||||
.hero-card {
|
||||
text-align: center;
|
||||
padding: 48px 24px;
|
||||
@include gradient-background(var(--gradient-primary));
|
||||
color: var(--color-text-white);
|
||||
border-radius: var(--border-radius-xl);
|
||||
border: none;
|
||||
box-shadow: var(--shadow-lg);
|
||||
}
|
||||
|
||||
.hero-content {
|
||||
max-width: 600px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.hero-icon .large-icon {
|
||||
font-size: 72px;
|
||||
width: 72px;
|
||||
height: 72px;
|
||||
margin-bottom: 24px;
|
||||
color: var(--color-text-white-muted);
|
||||
}
|
||||
|
||||
.hero-title {
|
||||
font-size: 2.5rem;
|
||||
font-weight: $font-weight-light;
|
||||
margin-bottom: 16px;
|
||||
line-height: 1.2;
|
||||
color: var(--color-text-white);
|
||||
}
|
||||
|
||||
.hero-subtitle {
|
||||
font-size: 1.25rem;
|
||||
margin-bottom: 16px;
|
||||
opacity: 0.9;
|
||||
line-height: 1.5;
|
||||
color: var(--color-text-white);
|
||||
}
|
||||
|
||||
.author-signature {
|
||||
font-size: 1rem;
|
||||
margin-bottom: 32px;
|
||||
opacity: 0.8;
|
||||
color: var(--color-text-white);
|
||||
}
|
||||
|
||||
.hero-actions {
|
||||
display: flex;
|
||||
gap: 16px;
|
||||
justify-content: center;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.primary-cta, .secondary-cta {
|
||||
@include material-button();
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
padding: 12px 24px;
|
||||
font-size: 1rem;
|
||||
font-weight: $font-weight-medium;
|
||||
border-radius: var(--border-radius-md);
|
||||
transition: var(--transition-normal);
|
||||
text-decoration: none;
|
||||
|
||||
i {
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
}
|
||||
|
||||
.primary-cta {
|
||||
background-color: var(--color-text-white);
|
||||
color: var(--color-primary);
|
||||
border: 2px solid var(--color-text-white);
|
||||
|
||||
&:hover {
|
||||
background-color: transparent;
|
||||
color: var(--color-text-white);
|
||||
border-color: var(--color-text-white);
|
||||
transform: translateY(-2px);
|
||||
box-shadow: var(--shadow-md);
|
||||
}
|
||||
}
|
||||
|
||||
.secondary-cta {
|
||||
background-color: transparent;
|
||||
color: var(--color-text-white);
|
||||
border: 2px solid var(--color-text-white);
|
||||
|
||||
&:hover {
|
||||
background-color: var(--color-text-white);
|
||||
color: var(--color-primary);
|
||||
transform: translateY(-2px);
|
||||
box-shadow: var(--shadow-md);
|
||||
}
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Features Section (Angular Material Grid Match)
|
||||
========================================================================== */
|
||||
|
||||
.features-section {
|
||||
margin-bottom: 48px;
|
||||
}
|
||||
|
||||
.section-header {
|
||||
text-align: center;
|
||||
margin-bottom: 32px;
|
||||
}
|
||||
|
||||
.section-header h2 {
|
||||
font-size: 2rem;
|
||||
font-weight: $font-weight-normal;
|
||||
margin-bottom: 8px;
|
||||
color: var(--color-text-primary);
|
||||
}
|
||||
|
||||
.section-header p {
|
||||
font-size: 1.125rem;
|
||||
color: var(--color-text-secondary);
|
||||
}
|
||||
|
||||
.features-grid {
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.feature-card {
|
||||
@include material-card;
|
||||
height: 100%;
|
||||
padding: 24px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
border: 1px solid var(--color-border-light);
|
||||
|
||||
.card-header {
|
||||
background: none;
|
||||
border: none;
|
||||
padding: 0;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.card-body {
|
||||
padding: 0;
|
||||
flex-grow: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.feature-avatar {
|
||||
background-color: var(--color-primary);
|
||||
color: var(--color-text-white);
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
border-radius: var(--border-radius-round);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 1.5rem;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.feature-highlights {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 16px 0 0;
|
||||
}
|
||||
|
||||
.feature-highlights li {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
margin-bottom: 8px;
|
||||
font-size: 0.9rem;
|
||||
color: var(--color-text-secondary);
|
||||
}
|
||||
|
||||
.check-icon {
|
||||
color: var(--color-success);
|
||||
font-size: 16px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Technology Stack Section (Angular Material Match)
|
||||
========================================================================== */
|
||||
|
||||
.tech-section {
|
||||
margin-bottom: 48px;
|
||||
}
|
||||
|
||||
.tech-card {
|
||||
@include material-card;
|
||||
padding: 24px;
|
||||
border: 1px solid var(--color-border-light);
|
||||
|
||||
.card-header {
|
||||
background: none;
|
||||
border: none;
|
||||
padding: 0;
|
||||
margin-bottom: 24px;
|
||||
|
||||
.card-title {
|
||||
color: var(--color-text-primary);
|
||||
font-size: 1.25rem;
|
||||
font-weight: $font-weight-medium;
|
||||
|
||||
i {
|
||||
color: var(--color-primary);
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.card-body {
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.tech-stack {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 24px;
|
||||
margin: 24px 0;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.tech-item {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
padding: 16px;
|
||||
border-radius: var(--border-radius-md);
|
||||
background-color: var(--color-surface-variant);
|
||||
border: 1px solid var(--color-border-light);
|
||||
transition: var(--transition-normal);
|
||||
min-width: 100px;
|
||||
|
||||
&:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: var(--shadow-md);
|
||||
background-color: var(--color-surface);
|
||||
}
|
||||
}
|
||||
|
||||
.tech-item i {
|
||||
color: var(--color-primary);
|
||||
font-size: 32px;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
}
|
||||
|
||||
.tech-item span {
|
||||
font-size: 0.9rem;
|
||||
font-weight: $font-weight-medium;
|
||||
color: var(--color-text-primary);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.tech-description {
|
||||
text-align: center;
|
||||
color: var(--color-text-secondary);
|
||||
margin-top: 24px;
|
||||
line-height: 1.6;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Responsive Design (Angular Material Breakpoints)
|
||||
========================================================================== */
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.home-container {
|
||||
padding: 24px 16px 0 16px;
|
||||
}
|
||||
|
||||
.hero-card {
|
||||
padding: 32px 16px;
|
||||
}
|
||||
|
||||
.hero-title {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.hero-actions {
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
|
||||
.primary-cta,
|
||||
.secondary-cta {
|
||||
width: 100%;
|
||||
max-width: 280px;
|
||||
justify-content: center;
|
||||
}
|
||||
}
|
||||
|
||||
.tech-stack {
|
||||
justify-content: space-around;
|
||||
}
|
||||
|
||||
.tech-item {
|
||||
min-width: 80px;
|
||||
padding: 12px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 992px) {
|
||||
.features-grid {
|
||||
.col-lg-4:nth-child(3) {
|
||||
margin-top: 1rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 480px) {
|
||||
.home-container {
|
||||
padding: 16px 12px 0 12px;
|
||||
}
|
||||
|
||||
.hero-title {
|
||||
font-size: 1.75rem;
|
||||
}
|
||||
|
||||
.hero-subtitle {
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.section-header h2 {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
}
|
||||
494
resources/sass/pages/_login.scss
Normal file
494
resources/sass/pages/_login.scss
Normal file
@@ -0,0 +1,494 @@
|
||||
/**
|
||||
* Login Page - Professional Bootstrap Design
|
||||
* Clean and modern login interface styling
|
||||
*
|
||||
* @author David Valera Melendez <david@valera-melendez.de>
|
||||
* @created 2025-08-08
|
||||
* @location Made in Germany 🇩🇪
|
||||
*/
|
||||
|
||||
/* ==========================================================================
|
||||
Login Container & Layout (Angular Material Match)
|
||||
========================================================================== */
|
||||
|
||||
.login-container {
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
background-color: var(--color-background);
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Hero Background Section (Left Side - Angular Material Style)
|
||||
========================================================================== */
|
||||
|
||||
.hero-background {
|
||||
flex: 1;
|
||||
@include gradient-background(var(--gradient-primary));
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
overflow: hidden;
|
||||
|
||||
@media (max-width: 992px) {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.hero-overlay {
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
text-align: center;
|
||||
padding: 48px;
|
||||
color: var(--color-text-white);
|
||||
}
|
||||
|
||||
.hero-content {
|
||||
max-width: 400px;
|
||||
}
|
||||
|
||||
.hero-icon .large-icon {
|
||||
font-size: 72px;
|
||||
width: 72px;
|
||||
height: 72px;
|
||||
margin-bottom: 24px;
|
||||
color: var(--color-text-white-muted);
|
||||
}
|
||||
|
||||
.hero-title {
|
||||
font-size: 2.5rem;
|
||||
font-weight: $font-weight-light;
|
||||
margin-bottom: 16px;
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
.hero-subtitle {
|
||||
font-size: 1.125rem;
|
||||
margin-bottom: 16px;
|
||||
opacity: 0.9;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.author-signature {
|
||||
font-size: 0.9rem;
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Login Form Container (Right Side - Angular Material Card)
|
||||
========================================================================== */
|
||||
|
||||
.login-form-container {
|
||||
flex: 0 0 520px;
|
||||
background-color: transparent;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 48px 32px;
|
||||
|
||||
@media (max-width: 992px) {
|
||||
flex: 1;
|
||||
background: var(--gradient-primary);
|
||||
}
|
||||
}
|
||||
|
||||
.login-card {
|
||||
@include material-card;
|
||||
width: 100%;
|
||||
max-width: 480px;
|
||||
background-color: var(--color-surface);
|
||||
border: none;
|
||||
box-shadow: var(--shadow-xl);
|
||||
border-radius: var(--border-radius-xl);
|
||||
overflow: hidden;
|
||||
|
||||
@media (max-width: 992px) {
|
||||
box-shadow: var(--shadow-2xl);
|
||||
}
|
||||
|
||||
.card-body {
|
||||
padding: 48px 32px;
|
||||
|
||||
@media (max-width: 576px) {
|
||||
padding: 32px 24px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Form Header (Angular Material Avatar & Title)
|
||||
========================================================================== */
|
||||
|
||||
.form-header {
|
||||
text-align: center;
|
||||
margin-bottom: 32px;
|
||||
}
|
||||
|
||||
.login-avatar {
|
||||
width: 64px;
|
||||
height: 64px;
|
||||
background-color: var(--color-primary);
|
||||
border-radius: var(--border-radius-round);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin: 0 auto 24px;
|
||||
color: var(--color-text-white);
|
||||
font-size: 1.5rem;
|
||||
box-shadow: var(--shadow-md);
|
||||
}
|
||||
|
||||
.form-title {
|
||||
font-size: 1.75rem;
|
||||
font-weight: $font-weight-normal;
|
||||
color: var(--color-text-primary);
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.form-subtitle {
|
||||
font-size: 1rem;
|
||||
color: var(--color-text-secondary);
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Material Design Form Fields (Angular Material Input Style)
|
||||
========================================================================== */
|
||||
|
||||
.login-form {
|
||||
.form-group {
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
}
|
||||
|
||||
.form-field {
|
||||
position: relative;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.material-input {
|
||||
@include material-input;
|
||||
width: 100%;
|
||||
padding: 16px 12px 8px;
|
||||
font-size: 1rem;
|
||||
background-color: var(--color-surface);
|
||||
border: 1px solid var(--color-border);
|
||||
border-radius: var(--border-radius-md);
|
||||
transition: var(--transition-normal);
|
||||
|
||||
&:focus {
|
||||
border-color: var(--color-primary);
|
||||
box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.1);
|
||||
outline: none;
|
||||
|
||||
+ .form-label {
|
||||
color: var(--color-primary);
|
||||
transform: translateY(-20px) scale(0.85);
|
||||
}
|
||||
}
|
||||
|
||||
&:not(:placeholder-shown) + .form-label {
|
||||
transform: translateY(-20px) scale(0.85);
|
||||
color: var(--color-text-secondary);
|
||||
}
|
||||
|
||||
&.is-invalid {
|
||||
border-color: var(--color-error);
|
||||
|
||||
&:focus {
|
||||
box-shadow: 0 0 0 2px rgba(244, 67, 54, 0.1);
|
||||
}
|
||||
|
||||
+ .form-label {
|
||||
color: var(--color-error);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.form-label {
|
||||
position: absolute;
|
||||
top: 12px;
|
||||
left: 12px;
|
||||
font-size: 1rem;
|
||||
color: var(--color-text-hint);
|
||||
pointer-events: none;
|
||||
transition: var(--transition-normal);
|
||||
transform-origin: left top;
|
||||
background-color: var(--color-surface);
|
||||
padding: 0 4px;
|
||||
margin-left: -4px;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.form-outline {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
pointer-events: none;
|
||||
border-radius: var(--border-radius-md);
|
||||
}
|
||||
|
||||
/* Password Toggle Button */
|
||||
.password-toggle {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
right: 12px;
|
||||
transform: translateY(-50%);
|
||||
background: none;
|
||||
border: none;
|
||||
color: var(--color-text-hint);
|
||||
cursor: pointer;
|
||||
font-size: 1.2rem;
|
||||
padding: 4px;
|
||||
border-radius: var(--border-radius-sm);
|
||||
transition: var(--transition-fast);
|
||||
|
||||
&:hover {
|
||||
color: var(--color-text-secondary);
|
||||
background-color: rgba(0, 0, 0, 0.04);
|
||||
}
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Form Options (Remember Me & Forgot Password)
|
||||
========================================================================== */
|
||||
|
||||
.form-options {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 24px;
|
||||
|
||||
@media (max-width: 576px) {
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
gap: 12px;
|
||||
}
|
||||
}
|
||||
|
||||
.form-check {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
|
||||
.form-check-input {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
border: 2px solid var(--color-border-dark);
|
||||
border-radius: 3px;
|
||||
background-color: var(--color-surface);
|
||||
|
||||
&:checked {
|
||||
background-color: var(--color-primary);
|
||||
border-color: var(--color-primary);
|
||||
}
|
||||
|
||||
&:focus {
|
||||
box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.1);
|
||||
}
|
||||
}
|
||||
|
||||
.form-check-label {
|
||||
font-size: 0.9rem;
|
||||
color: var(--color-text-secondary);
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
|
||||
.forgot-password-link {
|
||||
font-size: 0.9rem;
|
||||
color: var(--color-primary);
|
||||
text-decoration: none;
|
||||
transition: var(--transition-fast);
|
||||
|
||||
&:hover {
|
||||
color: var(--color-primary-dark);
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Login Button (Angular Material Raised Button)
|
||||
========================================================================== */
|
||||
|
||||
.login-btn {
|
||||
@include material-button(var(--color-primary));
|
||||
width: 100%;
|
||||
padding: 14px 24px;
|
||||
font-size: 1rem;
|
||||
font-weight: $font-weight-medium;
|
||||
border-radius: var(--border-radius-md);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.5px;
|
||||
margin-bottom: 24px;
|
||||
|
||||
&:hover {
|
||||
background-color: var(--color-primary-dark);
|
||||
transform: translateY(-1px);
|
||||
box-shadow: var(--shadow-lg);
|
||||
}
|
||||
|
||||
&:active {
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Social Login Section (Angular Material Style)
|
||||
========================================================================== */
|
||||
|
||||
.social-login {
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.divider {
|
||||
position: relative;
|
||||
text-align: center;
|
||||
margin: 24px 0;
|
||||
|
||||
&::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: 1px;
|
||||
background-color: var(--color-border);
|
||||
}
|
||||
|
||||
span {
|
||||
background-color: var(--color-surface);
|
||||
padding: 0 16px;
|
||||
color: var(--color-text-hint);
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
}
|
||||
|
||||
.social-buttons {
|
||||
display: flex;
|
||||
gap: 12px;
|
||||
|
||||
@media (max-width: 576px) {
|
||||
flex-direction: column;
|
||||
}
|
||||
}
|
||||
|
||||
.social-btn {
|
||||
flex: 1;
|
||||
padding: 12px 16px;
|
||||
border: 1px solid var(--color-border);
|
||||
border-radius: var(--border-radius-md);
|
||||
background-color: var(--color-surface);
|
||||
color: var(--color-text-secondary);
|
||||
font-weight: $font-weight-medium;
|
||||
transition: var(--transition-normal);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 8px;
|
||||
|
||||
&:hover {
|
||||
border-color: var(--color-border-dark);
|
||||
background-color: var(--color-surface-variant);
|
||||
transform: translateY(-1px);
|
||||
box-shadow: var(--shadow-sm);
|
||||
color: var(--color-text-primary);
|
||||
}
|
||||
|
||||
&.google-btn:hover {
|
||||
border-color: #db4437;
|
||||
color: #db4437;
|
||||
}
|
||||
|
||||
&.github-btn:hover {
|
||||
border-color: #333;
|
||||
color: #333;
|
||||
}
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Register Link
|
||||
========================================================================== */
|
||||
|
||||
.register-link {
|
||||
text-align: center;
|
||||
margin: 0;
|
||||
|
||||
p {
|
||||
color: var(--color-text-secondary);
|
||||
font-size: 0.9rem;
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.register-link-text {
|
||||
color: var(--color-primary);
|
||||
text-decoration: none;
|
||||
font-weight: $font-weight-medium;
|
||||
transition: var(--transition-fast);
|
||||
|
||||
&:hover {
|
||||
color: var(--color-primary-dark);
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Error Messages (Angular Material Style)
|
||||
========================================================================== */
|
||||
|
||||
.alert {
|
||||
border-radius: var(--border-radius-md);
|
||||
border: none;
|
||||
padding: 16px;
|
||||
margin-bottom: 24px;
|
||||
|
||||
&.alert-danger {
|
||||
background-color: var(--color-error-bg);
|
||||
color: var(--color-error-dark);
|
||||
border-left: 4px solid var(--color-error);
|
||||
}
|
||||
}
|
||||
|
||||
.invalid-feedback {
|
||||
display: block;
|
||||
font-size: 0.85rem;
|
||||
color: var(--color-error);
|
||||
margin-top: 8px;
|
||||
padding-left: 12px;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Responsive Design
|
||||
========================================================================== */
|
||||
|
||||
@media (max-width: 992px) {
|
||||
.login-container {
|
||||
background: var(--gradient-primary);
|
||||
}
|
||||
|
||||
.login-form-container {
|
||||
padding: 24px 16px;
|
||||
}
|
||||
|
||||
.login-card {
|
||||
margin: 0;
|
||||
box-shadow: var(--shadow-2xl);
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 576px) {
|
||||
.hero-title {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.form-title {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
.login-card .card-body {
|
||||
padding: 24px 20px;
|
||||
}
|
||||
}
|
||||
188
resources/sass/pages/_register-complete.scss
Normal file
188
resources/sass/pages/_register-complete.scss
Normal file
@@ -0,0 +1,188 @@
|
||||
/* ==========================================================================
|
||||
Register Button (Angular Material Raised Button)
|
||||
========================================================================== */
|
||||
|
||||
.register-btn {
|
||||
@include material-button(var(--color-success));
|
||||
width: 100%;
|
||||
padding: 14px 24px;
|
||||
font-size: 1rem;
|
||||
font-weight: $font-weight-medium;
|
||||
border-radius: var(--border-radius-md);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.5px;
|
||||
margin-bottom: 24px;
|
||||
|
||||
&:hover {
|
||||
background-color: var(--color-success-dark);
|
||||
transform: translateY(-1px);
|
||||
box-shadow: var(--shadow-lg);
|
||||
}
|
||||
|
||||
&:active {
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Social Registration Section (Angular Material Style)
|
||||
========================================================================== */
|
||||
|
||||
.social-login {
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.divider {
|
||||
position: relative;
|
||||
text-align: center;
|
||||
margin: 24px 0;
|
||||
|
||||
&::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: 1px;
|
||||
background-color: var(--color-border);
|
||||
}
|
||||
|
||||
span {
|
||||
background-color: var(--color-surface);
|
||||
padding: 0 16px;
|
||||
color: var(--color-text-hint);
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
}
|
||||
|
||||
.social-buttons {
|
||||
display: flex;
|
||||
gap: 12px;
|
||||
|
||||
@media (max-width: 576px) {
|
||||
flex-direction: column;
|
||||
}
|
||||
}
|
||||
|
||||
.social-btn {
|
||||
flex: 1;
|
||||
padding: 12px 16px;
|
||||
border: 1px solid var(--color-border);
|
||||
border-radius: var(--border-radius-md);
|
||||
background-color: var(--color-surface);
|
||||
color: var(--color-text-secondary);
|
||||
font-weight: $font-weight-medium;
|
||||
transition: var(--transition-normal);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 8px;
|
||||
|
||||
&:hover {
|
||||
border-color: var(--color-border-dark);
|
||||
background-color: var(--color-surface-variant);
|
||||
transform: translateY(-1px);
|
||||
box-shadow: var(--shadow-sm);
|
||||
color: var(--color-text-primary);
|
||||
}
|
||||
|
||||
&.google-btn:hover {
|
||||
border-color: #db4437;
|
||||
color: #db4437;
|
||||
}
|
||||
|
||||
&.github-btn:hover {
|
||||
border-color: #333;
|
||||
color: #333;
|
||||
}
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Login Link
|
||||
========================================================================== */
|
||||
|
||||
.login-link {
|
||||
text-align: center;
|
||||
margin: 0;
|
||||
|
||||
p {
|
||||
color: var(--color-text-secondary);
|
||||
font-size: 0.9rem;
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.login-link-text {
|
||||
color: var(--color-success);
|
||||
text-decoration: none;
|
||||
font-weight: $font-weight-medium;
|
||||
transition: var(--transition-fast);
|
||||
|
||||
&:hover {
|
||||
color: var(--color-success-dark);
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Error Messages (Angular Material Style)
|
||||
========================================================================== */
|
||||
|
||||
.alert {
|
||||
border-radius: var(--border-radius-md);
|
||||
border: none;
|
||||
padding: 16px;
|
||||
margin-bottom: 24px;
|
||||
|
||||
&.alert-danger {
|
||||
background-color: var(--color-error-bg);
|
||||
color: var(--color-error-dark);
|
||||
border-left: 4px solid var(--color-error);
|
||||
}
|
||||
}
|
||||
|
||||
.invalid-feedback {
|
||||
display: block;
|
||||
font-size: 0.85rem;
|
||||
color: var(--color-error);
|
||||
margin-top: 8px;
|
||||
padding-left: 12px;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Responsive Design
|
||||
========================================================================== */
|
||||
|
||||
@media (max-width: 992px) {
|
||||
.register-container {
|
||||
background: var(--gradient-success);
|
||||
}
|
||||
|
||||
.register-form-container {
|
||||
padding: 24px 16px;
|
||||
}
|
||||
|
||||
.register-card {
|
||||
margin: 0;
|
||||
box-shadow: var(--shadow-2xl);
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 576px) {
|
||||
.hero-title {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.form-title {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
.register-card .card-body {
|
||||
padding: 24px 20px;
|
||||
}
|
||||
|
||||
.register-form-container {
|
||||
flex: 0 0 auto;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
516
resources/sass/pages/_register.scss
Normal file
516
resources/sass/pages/_register.scss
Normal file
@@ -0,0 +1,516 @@
|
||||
/**
|
||||
* Register Page - Professional Bootstrap Design
|
||||
* Clean and modern registration interface styling
|
||||
*
|
||||
* @author David Valera Melendez <david@valera-melendez.de>
|
||||
* @created 2025-08-08
|
||||
* @location Made in Germany 🇩🇪
|
||||
*/
|
||||
|
||||
/* ==========================================================================
|
||||
Register Container & Layout (Angular Material Match)
|
||||
========================================================================== */
|
||||
|
||||
.register-container {
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
background-color: var(--color-background);
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Hero Background Section (Left Side - Angular Material Style)
|
||||
========================================================================== */
|
||||
|
||||
.hero-background {
|
||||
flex: 1;
|
||||
@include gradient-background(var(--gradient-success));
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
overflow: hidden;
|
||||
|
||||
@media (max-width: 992px) {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.hero-overlay {
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
text-align: center;
|
||||
padding: 48px;
|
||||
color: var(--color-text-white);
|
||||
}
|
||||
|
||||
.hero-content {
|
||||
max-width: 400px;
|
||||
}
|
||||
|
||||
.hero-icon .large-icon {
|
||||
font-size: 72px;
|
||||
width: 72px;
|
||||
height: 72px;
|
||||
margin-bottom: 24px;
|
||||
color: var(--color-text-white-muted);
|
||||
}
|
||||
|
||||
.hero-title {
|
||||
font-size: 2.5rem;
|
||||
font-weight: $font-weight-light;
|
||||
margin-bottom: 16px;
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
.hero-subtitle {
|
||||
font-size: 1.125rem;
|
||||
margin-bottom: 16px;
|
||||
opacity: 0.9;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.author-signature {
|
||||
font-size: 0.9rem;
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Register Form Container (Right Side - Angular Material Card)
|
||||
========================================================================== */
|
||||
|
||||
.register-form-container {
|
||||
flex: 0 0 520px;
|
||||
background-color: transparent;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 32px 24px;
|
||||
overflow-y: auto;
|
||||
|
||||
@media (max-width: 992px) {
|
||||
flex: 1;
|
||||
background: var(--gradient-success);
|
||||
}
|
||||
}
|
||||
|
||||
.register-card {
|
||||
@include material-card;
|
||||
width: 100%;
|
||||
max-width: 480px;
|
||||
background-color: var(--color-surface);
|
||||
border: none;
|
||||
box-shadow: var(--shadow-xl);
|
||||
border-radius: var(--border-radius-xl);
|
||||
overflow: hidden;
|
||||
|
||||
@media (max-width: 992px) {
|
||||
box-shadow: var(--shadow-2xl);
|
||||
}
|
||||
|
||||
.card-body {
|
||||
padding: 40px 32px;
|
||||
|
||||
@media (max-width: 576px) {
|
||||
padding: 32px 24px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Form Header (Angular Material Avatar & Title)
|
||||
========================================================================== */
|
||||
|
||||
.form-header {
|
||||
text-align: center;
|
||||
margin-bottom: 32px;
|
||||
}
|
||||
|
||||
.register-avatar {
|
||||
width: 64px;
|
||||
height: 64px;
|
||||
background-color: var(--color-success);
|
||||
border-radius: var(--border-radius-round);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin: 0 auto 24px;
|
||||
color: var(--color-text-white);
|
||||
font-size: 1.5rem;
|
||||
box-shadow: var(--shadow-md);
|
||||
}
|
||||
|
||||
.form-title {
|
||||
font-size: 1.75rem;
|
||||
font-weight: $font-weight-normal;
|
||||
color: var(--color-text-primary);
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.form-subtitle {
|
||||
font-size: 1rem;
|
||||
color: var(--color-text-secondary);
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Material Design Form Fields (Angular Material Input Style)
|
||||
========================================================================== */
|
||||
|
||||
.register-form {
|
||||
.form-group {
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.row {
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
.form-field {
|
||||
position: relative;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.material-input {
|
||||
@include material-input;
|
||||
width: 100%;
|
||||
padding: 16px 12px 8px;
|
||||
font-size: 1rem;
|
||||
background-color: var(--color-surface);
|
||||
border: 1px solid var(--color-border);
|
||||
border-radius: var(--border-radius-md);
|
||||
transition: var(--transition-normal);
|
||||
|
||||
&:focus {
|
||||
border-color: var(--color-success);
|
||||
box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.1);
|
||||
outline: none;
|
||||
|
||||
+ .form-label {
|
||||
color: var(--color-success);
|
||||
transform: translateY(-20px) scale(0.85);
|
||||
}
|
||||
}
|
||||
|
||||
&:not(:placeholder-shown) + .form-label {
|
||||
transform: translateY(-20px) scale(0.85);
|
||||
color: var(--color-text-secondary);
|
||||
}
|
||||
|
||||
&.is-invalid {
|
||||
border-color: var(--color-error);
|
||||
|
||||
&:focus {
|
||||
box-shadow: 0 0 0 2px rgba(244, 67, 54, 0.1);
|
||||
}
|
||||
|
||||
+ .form-label {
|
||||
color: var(--color-error);
|
||||
}
|
||||
}
|
||||
|
||||
&.is-valid {
|
||||
border-color: var(--color-success);
|
||||
|
||||
&:focus {
|
||||
box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.1);
|
||||
}
|
||||
|
||||
+ .form-label {
|
||||
color: var(--color-success);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.form-label {
|
||||
position: absolute;
|
||||
top: 12px;
|
||||
left: 12px;
|
||||
font-size: 1rem;
|
||||
color: var(--color-text-hint);
|
||||
pointer-events: none;
|
||||
transition: var(--transition-normal);
|
||||
transform-origin: left top;
|
||||
background-color: var(--color-surface);
|
||||
padding: 0 4px;
|
||||
margin-left: -4px;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.form-outline {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
pointer-events: none;
|
||||
border-radius: var(--border-radius-md);
|
||||
}
|
||||
|
||||
/* Password Toggle Button */
|
||||
.password-toggle {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
right: 12px;
|
||||
transform: translateY(-50%);
|
||||
background: none;
|
||||
border: none;
|
||||
color: var(--color-text-hint);
|
||||
cursor: pointer;
|
||||
font-size: 1.2rem;
|
||||
padding: 4px;
|
||||
border-radius: var(--border-radius-sm);
|
||||
transition: var(--transition-fast);
|
||||
z-index: 2;
|
||||
|
||||
&:hover {
|
||||
color: var(--color-text-secondary);
|
||||
background-color: rgba(0, 0, 0, 0.04);
|
||||
}
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Password Requirements & Validation
|
||||
========================================================================== */
|
||||
|
||||
.password-requirements {
|
||||
margin-top: 8px;
|
||||
padding-left: 12px;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Form Checkboxes (Terms & Newsletter)
|
||||
========================================================================== */
|
||||
|
||||
.form-check {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
gap: 12px;
|
||||
margin-bottom: 16px;
|
||||
|
||||
.form-check-input {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
border: 2px solid var(--color-border-dark);
|
||||
border-radius: 3px;
|
||||
background-color: var(--color-surface);
|
||||
margin-top: 2px;
|
||||
|
||||
&:checked {
|
||||
background-color: var(--color-success);
|
||||
border-color: var(--color-success);
|
||||
}
|
||||
|
||||
&:focus {
|
||||
box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.1);
|
||||
}
|
||||
|
||||
&.is-invalid {
|
||||
border-color: var(--color-error);
|
||||
}
|
||||
}
|
||||
|
||||
.form-check-label {
|
||||
font-size: 0.9rem;
|
||||
color: var(--color-text-secondary);
|
||||
cursor: pointer;
|
||||
line-height: 1.4;
|
||||
|
||||
a {
|
||||
color: var(--color-success);
|
||||
|
||||
&:hover {
|
||||
color: var(--color-success-dark);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Register Button (Angular Material Raised Button)
|
||||
========================================================================== */
|
||||
|
||||
.register-btn {
|
||||
@include material-button(var(--color-success));
|
||||
width: 100%;
|
||||
padding: 14px 24px;
|
||||
font-size: 1rem;
|
||||
font-weight: $font-weight-medium;
|
||||
border-radius: var(--border-radius-md);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.5px;
|
||||
margin-bottom: 24px;
|
||||
|
||||
&:hover {
|
||||
background-color: var(--color-success-dark);
|
||||
transform: translateY(-1px);
|
||||
box-shadow: var(--shadow-lg);
|
||||
}
|
||||
|
||||
&:active {
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Social Registration Section (Angular Material Style)
|
||||
========================================================================== */
|
||||
|
||||
.social-login {
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.divider {
|
||||
position: relative;
|
||||
text-align: center;
|
||||
margin: 24px 0;
|
||||
|
||||
&::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: 1px;
|
||||
background-color: var(--color-border);
|
||||
}
|
||||
|
||||
span {
|
||||
background-color: var(--color-surface);
|
||||
padding: 0 16px;
|
||||
color: var(--color-text-hint);
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
}
|
||||
|
||||
.social-buttons {
|
||||
display: flex;
|
||||
gap: 12px;
|
||||
|
||||
@media (max-width: 576px) {
|
||||
flex-direction: column;
|
||||
}
|
||||
}
|
||||
|
||||
.social-btn {
|
||||
flex: 1;
|
||||
padding: 12px 16px;
|
||||
border: 1px solid var(--color-border);
|
||||
border-radius: var(--border-radius-md);
|
||||
background-color: var(--color-surface);
|
||||
color: var(--color-text-secondary);
|
||||
font-weight: $font-weight-medium;
|
||||
transition: var(--transition-normal);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 8px;
|
||||
|
||||
&:hover {
|
||||
border-color: var(--color-border-dark);
|
||||
background-color: var(--color-surface-variant);
|
||||
transform: translateY(-1px);
|
||||
box-shadow: var(--shadow-sm);
|
||||
color: var(--color-text-primary);
|
||||
}
|
||||
|
||||
&.google-btn:hover {
|
||||
border-color: #db4437;
|
||||
color: #db4437;
|
||||
}
|
||||
|
||||
&.github-btn:hover {
|
||||
border-color: #333;
|
||||
color: #333;
|
||||
}
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Login Link
|
||||
========================================================================== */
|
||||
|
||||
.login-link {
|
||||
text-align: center;
|
||||
margin: 0;
|
||||
|
||||
p {
|
||||
color: var(--color-text-secondary);
|
||||
font-size: 0.9rem;
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.login-link-text {
|
||||
color: var(--color-success);
|
||||
text-decoration: none;
|
||||
font-weight: $font-weight-medium;
|
||||
transition: var(--transition-fast);
|
||||
|
||||
&:hover {
|
||||
color: var(--color-success-dark);
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Error Messages (Angular Material Style)
|
||||
========================================================================== */
|
||||
|
||||
.alert {
|
||||
border-radius: var(--border-radius-md);
|
||||
border: none;
|
||||
padding: 16px;
|
||||
margin-bottom: 24px;
|
||||
|
||||
&.alert-danger {
|
||||
background-color: var(--color-error-bg);
|
||||
color: var(--color-error-dark);
|
||||
border-left: 4px solid var(--color-error);
|
||||
}
|
||||
}
|
||||
|
||||
.invalid-feedback {
|
||||
display: block;
|
||||
font-size: 0.85rem;
|
||||
color: var(--color-error);
|
||||
margin-top: 8px;
|
||||
padding-left: 12px;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Responsive Design
|
||||
========================================================================== */
|
||||
|
||||
@media (max-width: 992px) {
|
||||
.register-container {
|
||||
background: var(--gradient-success);
|
||||
}
|
||||
|
||||
.register-form-container {
|
||||
padding: 24px 16px;
|
||||
}
|
||||
|
||||
.register-card {
|
||||
margin: 0;
|
||||
box-shadow: var(--shadow-2xl);
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 576px) {
|
||||
.hero-title {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.form-title {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
.register-card .card-body {
|
||||
padding: 24px 20px;
|
||||
}
|
||||
|
||||
.register-form-container {
|
||||
flex: 0 0 auto;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
529
resources/sass/pages/_resume-create.scss
Normal file
529
resources/sass/pages/_resume-create.scss
Normal file
@@ -0,0 +1,529 @@
|
||||
// ==========================================================================
|
||||
// Resume Builder Create Page Styles
|
||||
// Professional Resume Builder - Template Selection
|
||||
// ==========================================================================
|
||||
|
||||
.resume-create-page {
|
||||
.page-header {
|
||||
margin-bottom: var(--spacing-xl);
|
||||
|
||||
h1 {
|
||||
color: var(--color-dark);
|
||||
font-weight: 700;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.back-btn {
|
||||
padding: 0.75rem 1.5rem;
|
||||
font-weight: 500;
|
||||
border-radius: var(--border-radius-md);
|
||||
transition: all 0.2s ease;
|
||||
|
||||
&:hover {
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Template Cards Grid
|
||||
.templates-grid {
|
||||
.template-card {
|
||||
background: var(--color-white);
|
||||
border: none;
|
||||
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);
|
||||
transition: all 0.3s ease;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
|
||||
&:hover {
|
||||
transform: translateY(-6px);
|
||||
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.08);
|
||||
|
||||
.template-overlay {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.template-preview {
|
||||
position: relative;
|
||||
height: 300px;
|
||||
background: linear-gradient(135deg, var(--color-gray-50) 0%, var(--color-gray-100) 100%);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
overflow: hidden;
|
||||
|
||||
img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
.preview-placeholder {
|
||||
text-align: center;
|
||||
color: var(--color-gray-400);
|
||||
|
||||
i {
|
||||
font-size: 4rem;
|
||||
margin-bottom: var(--spacing-md);
|
||||
display: block;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 1.125rem;
|
||||
font-weight: 500;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.template-overlay {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(59, 130, 246, 0.9) 100%);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
opacity: 0;
|
||||
transition: opacity 0.3s ease;
|
||||
z-index: 2;
|
||||
|
||||
.preview-btn {
|
||||
background: rgba(255, 255, 255, 0.2);
|
||||
border: 2px solid rgba(255, 255, 255, 0.6);
|
||||
color: var(--color-white);
|
||||
padding: 0.75rem 1.5rem;
|
||||
border-radius: var(--border-radius-md);
|
||||
font-weight: 600;
|
||||
text-decoration: none;
|
||||
transition: all 0.2s ease;
|
||||
backdrop-filter: blur(10px);
|
||||
|
||||
&:hover {
|
||||
background: rgba(255, 255, 255, 0.3);
|
||||
border-color: rgba(255, 255, 255, 0.8);
|
||||
color: var(--color-white);
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
i {
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.card-body {
|
||||
padding: var(--spacing-lg);
|
||||
}
|
||||
|
||||
.template-header {
|
||||
display: flex;
|
||||
justify-content: between;
|
||||
align-items: start;
|
||||
margin-bottom: var(--spacing-md);
|
||||
|
||||
.template-title {
|
||||
font-size: 1.25rem;
|
||||
font-weight: 600;
|
||||
color: var(--color-dark);
|
||||
margin-bottom: 0;
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.template-category {
|
||||
font-size: 0.75rem;
|
||||
font-weight: 500;
|
||||
padding: 0.375rem 0.75rem;
|
||||
border-radius: var(--border-radius-full);
|
||||
|
||||
&.bg-primary {
|
||||
background: rgba(102, 126, 234, 0.1) !important;
|
||||
color: var(--brand-primary);
|
||||
}
|
||||
|
||||
&.bg-success {
|
||||
background: rgba(34, 197, 94, 0.1) !important;
|
||||
color: var(--brand-success);
|
||||
}
|
||||
|
||||
&.bg-warning {
|
||||
background: rgba(251, 191, 36, 0.1) !important;
|
||||
color: var(--brand-warning);
|
||||
}
|
||||
|
||||
&.bg-info {
|
||||
background: rgba(59, 130, 246, 0.1) !important;
|
||||
color: var(--brand-info);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.template-description {
|
||||
color: var(--color-gray-600);
|
||||
font-size: 0.875rem;
|
||||
line-height: 1.5;
|
||||
margin-bottom: var(--spacing-lg);
|
||||
}
|
||||
|
||||
.template-features {
|
||||
margin-bottom: var(--spacing-lg);
|
||||
|
||||
.feature-list {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
|
||||
li {
|
||||
font-size: 0.875rem;
|
||||
color: var(--color-gray-600);
|
||||
margin-bottom: 0.25rem;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
i {
|
||||
color: var(--brand-success);
|
||||
margin-right: 0.5rem;
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.template-actions {
|
||||
.select-btn {
|
||||
width: 100%;
|
||||
background: var(--brand-gradient);
|
||||
border: none;
|
||||
color: var(--color-white);
|
||||
padding: 0.875rem 1.5rem;
|
||||
font-weight: 600;
|
||||
border-radius: var(--border-radius-md);
|
||||
transition: all 0.3s ease;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
|
||||
&:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
|
||||
}
|
||||
|
||||
&:active {
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
&:disabled {
|
||||
opacity: 0.6;
|
||||
transform: none !important;
|
||||
box-shadow: none !important;
|
||||
}
|
||||
|
||||
.btn-text {
|
||||
transition: opacity 0.2s ease;
|
||||
}
|
||||
|
||||
.btn-loading {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
opacity: 0;
|
||||
transition: opacity 0.2s ease;
|
||||
|
||||
.spinner-border {
|
||||
width: 1.25rem;
|
||||
height: 1.25rem;
|
||||
}
|
||||
}
|
||||
|
||||
&.loading {
|
||||
.btn-text {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.btn-loading {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.preview-link {
|
||||
display: block;
|
||||
text-align: center;
|
||||
color: var(--brand-primary);
|
||||
text-decoration: none;
|
||||
font-size: 0.875rem;
|
||||
font-weight: 500;
|
||||
margin-top: var(--spacing-sm);
|
||||
transition: color 0.2s ease;
|
||||
|
||||
&:hover {
|
||||
color: var(--brand-primary-dark);
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
i {
|
||||
margin-right: 0.25rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Template Filters
|
||||
.template-filters {
|
||||
background: var(--color-white);
|
||||
border-radius: var(--border-radius-lg);
|
||||
padding: var(--spacing-lg);
|
||||
margin-bottom: var(--spacing-xl);
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.06), 0 1px 2px -1px rgba(0, 0, 0, 0.06);
|
||||
|
||||
.filter-section {
|
||||
margin-bottom: var(--spacing-md);
|
||||
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.filter-label {
|
||||
font-weight: 600;
|
||||
color: var(--color-dark);
|
||||
margin-bottom: var(--spacing-sm);
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
|
||||
.filter-options {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 0.5rem;
|
||||
|
||||
.filter-btn {
|
||||
background: var(--color-white);
|
||||
border: 1px solid var(--color-gray-300);
|
||||
color: var(--color-gray-600);
|
||||
padding: 0.5rem 1rem;
|
||||
border-radius: var(--border-radius-full);
|
||||
font-size: 0.875rem;
|
||||
font-weight: 500;
|
||||
transition: all 0.2s ease;
|
||||
cursor: pointer;
|
||||
|
||||
&:hover {
|
||||
background: var(--color-gray-50);
|
||||
border-color: var(--color-gray-400);
|
||||
}
|
||||
|
||||
&.active {
|
||||
background: var(--brand-primary);
|
||||
border-color: var(--brand-primary);
|
||||
color: var(--color-white);
|
||||
|
||||
&:hover {
|
||||
background: var(--brand-primary-dark);
|
||||
border-color: var(--brand-primary-dark);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Empty State
|
||||
.no-templates {
|
||||
text-align: center;
|
||||
padding: var(--spacing-4xl) var(--spacing-lg);
|
||||
|
||||
.empty-icon {
|
||||
font-size: 4rem;
|
||||
color: var(--color-gray-300);
|
||||
margin-bottom: var(--spacing-lg);
|
||||
}
|
||||
|
||||
h3 {
|
||||
color: var(--color-gray-700);
|
||||
font-weight: 600;
|
||||
margin-bottom: var(--spacing-md);
|
||||
}
|
||||
|
||||
p {
|
||||
color: var(--color-gray-500);
|
||||
font-size: 1.1rem;
|
||||
margin-bottom: 0;
|
||||
max-width: 400px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
}
|
||||
|
||||
// Loading States
|
||||
.templates-loading {
|
||||
.loading-card {
|
||||
background: var(--color-white);
|
||||
border-radius: var(--border-radius-lg);
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.06);
|
||||
height: 500px;
|
||||
|
||||
.loading-preview {
|
||||
height: 300px;
|
||||
background: linear-gradient(90deg, var(--color-gray-200) 25%, var(--color-gray-100) 50%, var(--color-gray-200) 75%);
|
||||
background-size: 200% 100%;
|
||||
animation: shimmer 2s infinite;
|
||||
}
|
||||
|
||||
.loading-body {
|
||||
padding: var(--spacing-lg);
|
||||
|
||||
.loading-title {
|
||||
height: 1.5rem;
|
||||
width: 70%;
|
||||
background: linear-gradient(90deg, var(--color-gray-200) 25%, var(--color-gray-100) 50%, var(--color-gray-200) 75%);
|
||||
background-size: 200% 100%;
|
||||
animation: shimmer 2s infinite;
|
||||
border-radius: var(--border-radius-sm);
|
||||
margin-bottom: var(--spacing-sm);
|
||||
}
|
||||
|
||||
.loading-description {
|
||||
height: 1rem;
|
||||
background: linear-gradient(90deg, var(--color-gray-200) 25%, var(--color-gray-100) 50%, var(--color-gray-200) 75%);
|
||||
background-size: 200% 100%;
|
||||
animation: shimmer 2s infinite;
|
||||
border-radius: var(--border-radius-sm);
|
||||
margin-bottom: 0.5rem;
|
||||
|
||||
&:last-of-type {
|
||||
width: 60%;
|
||||
margin-bottom: var(--spacing-lg);
|
||||
}
|
||||
}
|
||||
|
||||
.loading-button {
|
||||
height: 3rem;
|
||||
background: linear-gradient(90deg, var(--color-gray-200) 25%, var(--color-gray-100) 50%, var(--color-gray-200) 75%);
|
||||
background-size: 200% 100%;
|
||||
animation: shimmer 2s infinite;
|
||||
border-radius: var(--border-radius-md);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Responsive Design
|
||||
@include media-breakpoint-down(lg) {
|
||||
.template-filters {
|
||||
.filter-options {
|
||||
.filter-btn {
|
||||
flex: 1;
|
||||
text-align: center;
|
||||
min-width: auto;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@include media-breakpoint-down(md) {
|
||||
.resume-create-page {
|
||||
.page-header {
|
||||
text-align: center;
|
||||
|
||||
.back-btn {
|
||||
width: 100%;
|
||||
margin-top: var(--spacing-md);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.template-filters {
|
||||
.filter-section {
|
||||
.filter-options {
|
||||
.filter-btn {
|
||||
width: 100%;
|
||||
margin-bottom: 0.5rem;
|
||||
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.templates-grid {
|
||||
.template-card {
|
||||
.template-preview {
|
||||
height: 250px;
|
||||
}
|
||||
|
||||
.template-header {
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
|
||||
.template-category {
|
||||
margin-top: 0.5rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes shimmer {
|
||||
0% {
|
||||
background-position: -200% 0;
|
||||
}
|
||||
100% {
|
||||
background-position: 200% 0;
|
||||
}
|
||||
}
|
||||
|
||||
// Template Selection Animations
|
||||
@keyframes selectTemplate {
|
||||
0% {
|
||||
transform: scale(1);
|
||||
}
|
||||
50% {
|
||||
transform: scale(0.95);
|
||||
}
|
||||
100% {
|
||||
transform: scale(1);
|
||||
}
|
||||
}
|
||||
|
||||
.template-card.selecting {
|
||||
animation: selectTemplate 0.3s ease-in-out;
|
||||
}
|
||||
|
||||
// Success State
|
||||
.template-selected {
|
||||
border: 2px solid var(--brand-success) !important;
|
||||
|
||||
.template-overlay {
|
||||
background: linear-gradient(135deg, rgba(34, 197, 94, 0.9) 0%, rgba(22, 163, 74, 0.9) 100%);
|
||||
opacity: 1;
|
||||
|
||||
.success-message {
|
||||
color: var(--color-white);
|
||||
text-align: center;
|
||||
|
||||
i {
|
||||
font-size: 3rem;
|
||||
margin-bottom: var(--spacing-md);
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-weight: 600;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
p {
|
||||
margin-bottom: 0;
|
||||
opacity: 0.9;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
510
resources/sass/pages/_resume-index.scss
Normal file
510
resources/sass/pages/_resume-index.scss
Normal file
@@ -0,0 +1,510 @@
|
||||
// ==========================================================================
|
||||
// Resume Builder Index Page Styles
|
||||
// Professional Resume Builder - Resume Management
|
||||
// ==========================================================================
|
||||
|
||||
.resume-index-page {
|
||||
.page-header {
|
||||
margin-bottom: var(--spacing-xl);
|
||||
|
||||
h1 {
|
||||
color: var(--color-dark);
|
||||
font-weight: 700;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.header-actions {
|
||||
.btn {
|
||||
padding: 0.75rem 1.5rem;
|
||||
font-weight: 500;
|
||||
border-radius: var(--border-radius-md);
|
||||
transition: all 0.2s ease;
|
||||
|
||||
&:hover {
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Statistics Cards
|
||||
.stats-cards {
|
||||
margin-bottom: var(--spacing-xl);
|
||||
|
||||
.stats-card {
|
||||
background: var(--color-white);
|
||||
border: none;
|
||||
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);
|
||||
transition: all 0.3s ease;
|
||||
height: 100%;
|
||||
|
||||
&:hover {
|
||||
transform: translateY(-4px);
|
||||
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
||||
}
|
||||
|
||||
.card-body {
|
||||
padding: var(--spacing-lg);
|
||||
}
|
||||
|
||||
.stats-number {
|
||||
font-size: 2.5rem;
|
||||
font-weight: 800;
|
||||
margin-bottom: 0.5rem;
|
||||
line-height: 1;
|
||||
|
||||
&.text-primary {
|
||||
color: var(--brand-primary) !important;
|
||||
}
|
||||
|
||||
&.text-success {
|
||||
color: var(--brand-success) !important;
|
||||
}
|
||||
|
||||
&.text-warning {
|
||||
color: var(--brand-warning) !important;
|
||||
}
|
||||
|
||||
&.text-info {
|
||||
color: var(--brand-info) !important;
|
||||
}
|
||||
}
|
||||
|
||||
.stats-label {
|
||||
font-size: 0.875rem;
|
||||
font-weight: 500;
|
||||
color: var(--color-gray-600);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
}
|
||||
|
||||
.stats-icon {
|
||||
width: 3.5rem;
|
||||
height: 3.5rem;
|
||||
border-radius: var(--border-radius-lg);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 1.5rem;
|
||||
|
||||
&.bg-primary {
|
||||
background: rgba(102, 126, 234, 0.1) !important;
|
||||
color: var(--brand-primary);
|
||||
}
|
||||
|
||||
&.bg-success {
|
||||
background: rgba(34, 197, 94, 0.1) !important;
|
||||
color: var(--brand-success);
|
||||
}
|
||||
|
||||
&.bg-warning {
|
||||
background: rgba(251, 191, 36, 0.1) !important;
|
||||
color: var(--brand-warning);
|
||||
}
|
||||
|
||||
&.bg-info {
|
||||
background: rgba(59, 130, 246, 0.1) !important;
|
||||
color: var(--brand-info);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Resume Cards Grid
|
||||
.resumes-grid {
|
||||
.resume-card {
|
||||
background: var(--color-white);
|
||||
border: none;
|
||||
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);
|
||||
transition: all 0.3s ease;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
|
||||
&:hover {
|
||||
transform: translateY(-4px);
|
||||
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
||||
}
|
||||
|
||||
.resume-thumbnail {
|
||||
height: 200px;
|
||||
background: linear-gradient(135deg, var(--color-gray-50) 0%, var(--color-gray-100) 100%);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border-bottom: 1px solid var(--color-gray-100);
|
||||
|
||||
.thumbnail-placeholder {
|
||||
color: var(--color-gray-400);
|
||||
text-align: center;
|
||||
|
||||
i {
|
||||
font-size: 3rem;
|
||||
margin-bottom: 0.5rem;
|
||||
display: block;
|
||||
}
|
||||
|
||||
span {
|
||||
font-size: 0.875rem;
|
||||
font-weight: 500;
|
||||
}
|
||||
}
|
||||
|
||||
img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
}
|
||||
|
||||
.card-body {
|
||||
padding: var(--spacing-lg);
|
||||
}
|
||||
|
||||
.resume-title {
|
||||
font-size: 1.25rem;
|
||||
font-weight: 600;
|
||||
color: var(--color-dark);
|
||||
margin-bottom: 0.5rem;
|
||||
|
||||
a {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
transition: color 0.2s ease;
|
||||
|
||||
&:hover {
|
||||
color: var(--brand-primary);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.resume-meta {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: var(--spacing-md);
|
||||
margin-bottom: var(--spacing-md);
|
||||
|
||||
.meta-item {
|
||||
font-size: 0.875rem;
|
||||
color: var(--color-gray-600);
|
||||
|
||||
i {
|
||||
margin-right: 0.25rem;
|
||||
color: var(--color-gray-400);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.resume-status {
|
||||
margin-bottom: var(--spacing-md);
|
||||
|
||||
.badge {
|
||||
font-size: 0.75rem;
|
||||
font-weight: 500;
|
||||
padding: 0.375rem 0.75rem;
|
||||
border-radius: var(--border-radius-full);
|
||||
|
||||
&.bg-success {
|
||||
background: var(--brand-success) !important;
|
||||
}
|
||||
|
||||
&.bg-warning {
|
||||
background: var(--brand-warning) !important;
|
||||
color: var(--color-white);
|
||||
}
|
||||
|
||||
&.bg-secondary {
|
||||
background: var(--color-gray-500) !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.resume-actions {
|
||||
display: flex;
|
||||
gap: 0.5rem;
|
||||
|
||||
.btn {
|
||||
flex: 1;
|
||||
padding: 0.5rem;
|
||||
font-size: 0.875rem;
|
||||
font-weight: 500;
|
||||
border-radius: var(--border-radius-md);
|
||||
transition: all 0.2s ease;
|
||||
|
||||
&:hover {
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
||||
i {
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
}
|
||||
|
||||
.btn-outline-primary {
|
||||
border-color: var(--brand-primary);
|
||||
color: var(--brand-primary);
|
||||
|
||||
&:hover {
|
||||
background: var(--brand-primary);
|
||||
border-color: var(--brand-primary);
|
||||
}
|
||||
}
|
||||
|
||||
.btn-outline-success {
|
||||
border-color: var(--brand-success);
|
||||
color: var(--brand-success);
|
||||
|
||||
&:hover {
|
||||
background: var(--brand-success);
|
||||
border-color: var(--brand-success);
|
||||
}
|
||||
}
|
||||
|
||||
.btn-outline-danger {
|
||||
border-color: var(--brand-danger);
|
||||
color: var(--brand-danger);
|
||||
|
||||
&:hover {
|
||||
background: var(--brand-danger);
|
||||
border-color: var(--brand-danger);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Empty State
|
||||
.empty-state {
|
||||
text-align: center;
|
||||
padding: var(--spacing-4xl) var(--spacing-lg);
|
||||
|
||||
.empty-icon {
|
||||
font-size: 4rem;
|
||||
color: var(--color-gray-300);
|
||||
margin-bottom: var(--spacing-lg);
|
||||
}
|
||||
|
||||
h3 {
|
||||
color: var(--color-gray-700);
|
||||
font-weight: 600;
|
||||
margin-bottom: var(--spacing-md);
|
||||
}
|
||||
|
||||
p {
|
||||
color: var(--color-gray-500);
|
||||
font-size: 1.1rem;
|
||||
margin-bottom: var(--spacing-xl);
|
||||
max-width: 400px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.btn {
|
||||
padding: 0.875rem 2rem;
|
||||
font-weight: 600;
|
||||
border-radius: var(--border-radius-md);
|
||||
}
|
||||
}
|
||||
|
||||
// Filters and Search
|
||||
.resume-filters {
|
||||
background: var(--color-white);
|
||||
border-radius: var(--border-radius-lg);
|
||||
padding: var(--spacing-lg);
|
||||
margin-bottom: var(--spacing-xl);
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.06), 0 1px 2px -1px rgba(0, 0, 0, 0.06);
|
||||
|
||||
.search-input {
|
||||
position: relative;
|
||||
|
||||
.form-control {
|
||||
border-radius: var(--border-radius-md);
|
||||
border: 1px solid var(--color-gray-300);
|
||||
padding: 0.75rem 1rem 0.75rem 3rem;
|
||||
transition: all 0.2s ease;
|
||||
|
||||
&:focus {
|
||||
border-color: var(--brand-primary);
|
||||
box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.1);
|
||||
}
|
||||
}
|
||||
|
||||
.search-icon {
|
||||
position: absolute;
|
||||
left: 1rem;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
color: var(--color-gray-400);
|
||||
z-index: 3;
|
||||
}
|
||||
}
|
||||
|
||||
.filter-buttons {
|
||||
.btn {
|
||||
border-radius: var(--border-radius-full);
|
||||
padding: 0.5rem 1rem;
|
||||
font-weight: 500;
|
||||
border: 1px solid var(--color-gray-300);
|
||||
color: var(--color-gray-600);
|
||||
background: var(--color-white);
|
||||
transition: all 0.2s ease;
|
||||
|
||||
&.active {
|
||||
background: var(--brand-primary);
|
||||
border-color: var(--brand-primary);
|
||||
color: var(--color-white);
|
||||
}
|
||||
|
||||
&:hover:not(.active) {
|
||||
background: var(--color-gray-50);
|
||||
border-color: var(--color-gray-400);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Pagination
|
||||
.pagination-wrapper {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
margin-top: var(--spacing-xl);
|
||||
|
||||
.pagination {
|
||||
.page-item {
|
||||
.page-link {
|
||||
border: none;
|
||||
background: transparent;
|
||||
color: var(--color-gray-600);
|
||||
font-weight: 500;
|
||||
padding: 0.5rem 0.75rem;
|
||||
margin: 0 0.125rem;
|
||||
border-radius: var(--border-radius-md);
|
||||
transition: all 0.2s ease;
|
||||
|
||||
&:hover {
|
||||
background: var(--color-gray-100);
|
||||
color: var(--color-gray-800);
|
||||
}
|
||||
}
|
||||
|
||||
&.active .page-link {
|
||||
background: var(--brand-primary);
|
||||
color: var(--color-white);
|
||||
|
||||
&:hover {
|
||||
background: var(--brand-primary-dark);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Responsive Design
|
||||
@include media-breakpoint-down(lg) {
|
||||
.resume-index-page {
|
||||
.page-header {
|
||||
.header-actions {
|
||||
margin-top: var(--spacing-md);
|
||||
|
||||
.btn {
|
||||
width: 100%;
|
||||
margin-bottom: 0.5rem;
|
||||
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.stats-cards {
|
||||
.col-xl-3 {
|
||||
margin-bottom: var(--spacing-md);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@include media-breakpoint-down(md) {
|
||||
.resume-filters {
|
||||
.search-input {
|
||||
margin-bottom: var(--spacing-md);
|
||||
}
|
||||
|
||||
.filter-buttons {
|
||||
.btn {
|
||||
width: 100%;
|
||||
margin-bottom: 0.5rem;
|
||||
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.resumes-grid {
|
||||
.resume-card {
|
||||
.resume-actions {
|
||||
.btn {
|
||||
font-size: 0.8rem;
|
||||
padding: 0.375rem 0.5rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Loading States
|
||||
.loading-skeleton {
|
||||
.skeleton-card {
|
||||
background: var(--color-white);
|
||||
border-radius: var(--border-radius-lg);
|
||||
padding: var(--spacing-lg);
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.06);
|
||||
|
||||
.skeleton-thumbnail {
|
||||
height: 200px;
|
||||
background: linear-gradient(90deg, var(--color-gray-200) 25%, var(--color-gray-100) 50%, var(--color-gray-200) 75%);
|
||||
background-size: 200% 100%;
|
||||
animation: shimmer 2s infinite;
|
||||
border-radius: var(--border-radius-md);
|
||||
margin-bottom: var(--spacing-md);
|
||||
}
|
||||
|
||||
.skeleton-text {
|
||||
height: 1rem;
|
||||
background: linear-gradient(90deg, var(--color-gray-200) 25%, var(--color-gray-100) 50%, var(--color-gray-200) 75%);
|
||||
background-size: 200% 100%;
|
||||
animation: shimmer 2s infinite;
|
||||
border-radius: var(--border-radius-sm);
|
||||
margin-bottom: 0.5rem;
|
||||
|
||||
&.title {
|
||||
height: 1.5rem;
|
||||
width: 80%;
|
||||
}
|
||||
|
||||
&.subtitle {
|
||||
height: 1rem;
|
||||
width: 60%;
|
||||
}
|
||||
|
||||
&.meta {
|
||||
height: 0.875rem;
|
||||
width: 40%;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes shimmer {
|
||||
0% {
|
||||
background-position: -200% 0;
|
||||
}
|
||||
100% {
|
||||
background-position: 200% 0;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user