GNXSOFT.COM
This commit is contained in:
1265
gnx-react/public/styles/_responsive.scss
Normal file
1265
gnx-react/public/styles/_responsive.scss
Normal file
File diff suppressed because it is too large
Load Diff
407
gnx-react/public/styles/abstracts/_mixins.scss
Normal file
407
gnx-react/public/styles/abstracts/_mixins.scss
Normal file
@@ -0,0 +1,407 @@
|
||||
/* ====
|
||||
--------- (1.01) mixins start ---------
|
||||
==== */
|
||||
|
||||
@use "sass:color";
|
||||
|
||||
// Legacy mixins for backward compatibility
|
||||
@mixin background($color, $repeat, $size, $position) {
|
||||
background-color: $color;
|
||||
background-repeat: $repeat;
|
||||
background-size: $size;
|
||||
background-position: $position;
|
||||
}
|
||||
|
||||
@mixin center($width) {
|
||||
max-width: $width;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
@mixin box($value) {
|
||||
width: $value;
|
||||
min-width: $value;
|
||||
height: $value;
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
// Modern utility mixins
|
||||
@mixin flex-center {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
@mixin flex-between {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
@mixin flex-column {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
@mixin absolute-center {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
|
||||
@mixin absolute-cover {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
// Typography mixins
|
||||
@mixin text-truncate {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
@mixin text-clamp($lines: 2) {
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: $lines;
|
||||
-webkit-box-orient: vertical;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
@mixin font-smoothing {
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
// Visual effects mixins
|
||||
@mixin glassmorphism($opacity: 0.1, $blur: 10px) {
|
||||
background: rgba(255, 255, 255, $opacity);
|
||||
backdrop-filter: blur($blur);
|
||||
-webkit-backdrop-filter: blur($blur);
|
||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||
}
|
||||
|
||||
@mixin glassmorphism-dark($opacity: 0.1, $blur: 10px) {
|
||||
background: rgba(0, 0, 0, $opacity);
|
||||
backdrop-filter: blur($blur);
|
||||
-webkit-backdrop-filter: blur($blur);
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
}
|
||||
|
||||
@mixin gradient-text($gradient) {
|
||||
background: $gradient;
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
background-clip: text;
|
||||
}
|
||||
|
||||
@mixin gradient-border($gradient, $width: 1px) {
|
||||
position: relative;
|
||||
background: $gradient;
|
||||
border-radius: inherit;
|
||||
|
||||
&::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
inset: $width;
|
||||
background: inherit;
|
||||
border-radius: inherit;
|
||||
z-index: -1;
|
||||
}
|
||||
}
|
||||
|
||||
// Shadow mixins
|
||||
@mixin shadow-elevation($level: 1) {
|
||||
@if $level == 1 {
|
||||
box-shadow: var(--shadow-sm);
|
||||
} @else if $level == 2 {
|
||||
box-shadow: var(--shadow-base);
|
||||
} @else if $level == 3 {
|
||||
box-shadow: var(--shadow-md);
|
||||
} @else if $level == 4 {
|
||||
box-shadow: var(--shadow-lg);
|
||||
} @else if $level == 5 {
|
||||
box-shadow: var(--shadow-xl);
|
||||
}
|
||||
}
|
||||
|
||||
@mixin shadow-colored($color, $opacity: 0.25) {
|
||||
box-shadow: 0 4px 14px 0 rgba($color, $opacity);
|
||||
}
|
||||
|
||||
// Animation mixins
|
||||
@mixin transition($properties: all, $duration: 0.3s, $timing: ease-in-out) {
|
||||
transition: $properties $duration $timing;
|
||||
}
|
||||
|
||||
@mixin hover-lift($lift: 4px) {
|
||||
transition: transform var(--transition-default);
|
||||
|
||||
&:hover {
|
||||
transform: translateY(-#{$lift});
|
||||
}
|
||||
}
|
||||
|
||||
@mixin hover-scale($scale: 1.05) {
|
||||
transition: transform var(--transition-default);
|
||||
|
||||
&:hover {
|
||||
transform: scale($scale);
|
||||
}
|
||||
}
|
||||
|
||||
@mixin pulse-animation($color: var(--primary-500), $duration: 2s) {
|
||||
animation: pulse $duration infinite;
|
||||
|
||||
@keyframes pulse {
|
||||
0%, 100% {
|
||||
box-shadow: 0 0 0 0 rgba($color, 0.7);
|
||||
}
|
||||
70% {
|
||||
box-shadow: 0 0 0 10px rgba($color, 0);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@mixin shimmer-effect {
|
||||
background: linear-gradient(
|
||||
90deg,
|
||||
transparent,
|
||||
rgba(255, 255, 255, 0.4),
|
||||
transparent
|
||||
);
|
||||
background-size: 200% 100%;
|
||||
animation: shimmer 1.5s infinite;
|
||||
|
||||
@keyframes shimmer {
|
||||
0% {
|
||||
background-position: -200% 0;
|
||||
}
|
||||
100% {
|
||||
background-position: 200% 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Layout mixins
|
||||
@mixin container($max-width: var(--container-xl)) {
|
||||
width: 100%;
|
||||
max-width: $max-width;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
padding-left: var(--space-4);
|
||||
padding-right: var(--space-4);
|
||||
|
||||
@media (min-width: 640px) {
|
||||
padding-left: var(--space-6);
|
||||
padding-right: var(--space-6);
|
||||
}
|
||||
|
||||
@media (min-width: 1024px) {
|
||||
padding-left: var(--space-8);
|
||||
padding-right: var(--space-8);
|
||||
}
|
||||
}
|
||||
|
||||
@mixin grid($columns: 1, $gap: var(--space-4)) {
|
||||
display: grid;
|
||||
grid-template-columns: repeat($columns, 1fr);
|
||||
gap: $gap;
|
||||
}
|
||||
|
||||
@mixin aspect-ratio($width: 16, $height: 9) {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
|
||||
&::before {
|
||||
content: '';
|
||||
display: block;
|
||||
padding-top: percentage($height / $width);
|
||||
}
|
||||
|
||||
> * {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
}
|
||||
|
||||
// Button mixins
|
||||
@mixin button-base {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: var(--space-2);
|
||||
padding: var(--space-3) var(--space-6);
|
||||
border: 1px solid transparent;
|
||||
border-radius: var(--radius-lg);
|
||||
font-weight: var(--font-weight-medium);
|
||||
font-size: var(--text-sm);
|
||||
line-height: var(--leading-none);
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
transition: var(--transition-colors);
|
||||
user-select: none;
|
||||
|
||||
&:focus {
|
||||
outline: 2px solid transparent;
|
||||
outline-offset: 2px;
|
||||
box-shadow: 0 0 0 2px var(--primary-500);
|
||||
}
|
||||
|
||||
&:disabled {
|
||||
opacity: 0.5;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
}
|
||||
|
||||
@mixin button-variant($bg, $color: white, $hover-bg: null, $hover-color: null) {
|
||||
background-color: $bg;
|
||||
color: $color;
|
||||
|
||||
&:hover:not(:disabled) {
|
||||
background-color: $hover-bg or $bg;
|
||||
color: $hover-color or $color;
|
||||
filter: brightness(0.9);
|
||||
}
|
||||
|
||||
&:active:not(:disabled) {
|
||||
background-color: $bg;
|
||||
filter: brightness(0.85);
|
||||
}
|
||||
}
|
||||
|
||||
@mixin button-outline($color, $hover-bg: null, $hover-color: null) {
|
||||
background-color: transparent;
|
||||
color: $color;
|
||||
border-color: $color;
|
||||
|
||||
&:hover:not(:disabled) {
|
||||
background-color: $hover-bg or $color;
|
||||
color: $hover-color or white;
|
||||
}
|
||||
}
|
||||
|
||||
// Form mixins
|
||||
@mixin input-base {
|
||||
display: block;
|
||||
width: 100%;
|
||||
padding: var(--space-3) var(--space-4);
|
||||
border: 1px solid var(--secondary-300);
|
||||
border-radius: var(--radius-lg);
|
||||
font-size: var(--text-sm);
|
||||
line-height: var(--leading-normal);
|
||||
background-color: var(--white);
|
||||
transition: var(--transition-colors);
|
||||
|
||||
&:focus {
|
||||
outline: none;
|
||||
border-color: var(--primary-500);
|
||||
box-shadow: 0 0 0 3px var(--primary-100);
|
||||
}
|
||||
|
||||
&::placeholder {
|
||||
color: var(--secondary-400);
|
||||
}
|
||||
|
||||
&:disabled {
|
||||
background-color: var(--secondary-100);
|
||||
color: var(--secondary-500);
|
||||
cursor: not-allowed;
|
||||
}
|
||||
}
|
||||
|
||||
// Card mixins
|
||||
@mixin card-base {
|
||||
background-color: var(--white);
|
||||
border-radius: var(--radius-xl);
|
||||
box-shadow: var(--shadow-sm);
|
||||
overflow: hidden;
|
||||
transition: var(--transition-shadow);
|
||||
|
||||
&:hover {
|
||||
box-shadow: var(--shadow-md);
|
||||
}
|
||||
}
|
||||
|
||||
@mixin card-elevated {
|
||||
@include card-base;
|
||||
box-shadow: var(--shadow-lg);
|
||||
|
||||
&:hover {
|
||||
box-shadow: var(--shadow-xl);
|
||||
}
|
||||
}
|
||||
|
||||
// Responsive mixins
|
||||
@mixin mobile-only {
|
||||
@media (max-width: 767px) {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
|
||||
@mixin tablet-up {
|
||||
@media (min-width: 768px) {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
|
||||
@mixin desktop-up {
|
||||
@media (min-width: 1024px) {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
|
||||
@mixin large-desktop-up {
|
||||
@media (min-width: 1280px) {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
|
||||
// Accessibility mixins
|
||||
@mixin sr-only {
|
||||
position: absolute;
|
||||
width: 1px;
|
||||
height: 1px;
|
||||
padding: 0;
|
||||
margin: -1px;
|
||||
overflow: hidden;
|
||||
clip: rect(0, 0, 0, 0);
|
||||
white-space: nowrap;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
@mixin focus-visible {
|
||||
&:focus-visible {
|
||||
outline: 2px solid var(--primary-500);
|
||||
outline-offset: 2px;
|
||||
}
|
||||
}
|
||||
|
||||
// Print mixins
|
||||
@mixin print-only {
|
||||
@media print {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
|
||||
@mixin no-print {
|
||||
@media print {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
|
||||
/* ====
|
||||
--------- (1.01) mixins end ---------
|
||||
==== */
|
||||
239
gnx-react/public/styles/abstracts/_variables.scss
Normal file
239
gnx-react/public/styles/abstracts/_variables.scss
Normal file
@@ -0,0 +1,239 @@
|
||||
/* ====
|
||||
--------- (1.02) variables start ---------
|
||||
==== */
|
||||
|
||||
:root {
|
||||
// Base colors
|
||||
--white: #ffffff;
|
||||
--black: #000000;
|
||||
--transparent: transparent;
|
||||
|
||||
// Primary color palette
|
||||
--primary-50: #eff6ff;
|
||||
--primary-100: #dbeafe;
|
||||
--primary-200: #bfdbfe;
|
||||
--primary-300: #93c5fd;
|
||||
--primary-400: #60a5fa;
|
||||
--primary-500: #3b82f6;
|
||||
--primary-600: #2563eb;
|
||||
--primary-700: #1d4ed8;
|
||||
--primary-800: #1e40af;
|
||||
--primary-900: #1e3a8a;
|
||||
--primary-950: #172554;
|
||||
|
||||
// Secondary color palette (grays)
|
||||
--secondary-50: #f8fafc;
|
||||
--secondary-100: #f1f5f9;
|
||||
--secondary-200: #e2e8f0;
|
||||
--secondary-300: #cbd5e1;
|
||||
--secondary-400: #94a3b8;
|
||||
--secondary-500: #64748b;
|
||||
--secondary-600: #475569;
|
||||
--secondary-700: #334155;
|
||||
--secondary-800: #1e293b;
|
||||
--secondary-900: #0f172a;
|
||||
--secondary-950: #020617;
|
||||
|
||||
// Accent colors
|
||||
--accent-blue: #0ea5e9;
|
||||
--accent-cyan: #06b6d4;
|
||||
--accent-emerald: #10b981;
|
||||
--accent-violet: #8b5cf6;
|
||||
--accent-rose: #f43f5e;
|
||||
--accent-amber: #f59e0b;
|
||||
|
||||
// Semantic colors
|
||||
--success: #10b981;
|
||||
--warning: #f59e0b;
|
||||
--error: #ef4444;
|
||||
--info: #3b82f6;
|
||||
|
||||
// Legacy color mappings for backward compatibility
|
||||
--template-bg: var(--white);
|
||||
--template-color: var(--secondary-600);
|
||||
--primary-color: var(--primary-600);
|
||||
--secondary-color: var(--secondary-800);
|
||||
--tertiary-color: var(--secondary-500);
|
||||
--quaternary-color: var(--primary-600);
|
||||
--quinary-color: var(--secondary-100);
|
||||
|
||||
// Enterprise colors
|
||||
--enterprise-blue: var(--primary-600);
|
||||
--enterprise-dark-blue: var(--primary-800);
|
||||
--enterprise-light-blue: var(--primary-400);
|
||||
--enterprise-gray: var(--secondary-500);
|
||||
--enterprise-light-gray: var(--secondary-50);
|
||||
|
||||
// Gold enterprise colors
|
||||
--enterprise-gold: #d4af37;
|
||||
--enterprise-dark-gold: #b8941f;
|
||||
--enterprise-light-gold: #f4d03f;
|
||||
--enterprise-gold-accent: #ffd700;
|
||||
|
||||
// Typography - Enterprise Grade Fonts
|
||||
--font-family-sans: 'IBM Plex Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
||||
--font-family-mono: 'IBM Plex Mono', 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
|
||||
--font-family-display: 'IBM Plex Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
|
||||
|
||||
// Font weights
|
||||
--font-weight-thin: 100;
|
||||
--font-weight-light: 300;
|
||||
--font-weight-normal: 400;
|
||||
--font-weight-medium: 500;
|
||||
--font-weight-semibold: 600;
|
||||
--font-weight-bold: 700;
|
||||
--font-weight-extrabold: 800;
|
||||
--font-weight-black: 900;
|
||||
|
||||
// Font sizes
|
||||
--text-xs: 0.75rem; // 12px
|
||||
--text-sm: 0.875rem; // 14px
|
||||
--text-base: 1rem; // 16px
|
||||
--text-lg: 1.125rem; // 18px
|
||||
--text-xl: 1.25rem; // 20px
|
||||
--text-2xl: 1.5rem; // 24px
|
||||
--text-3xl: 1.875rem; // 30px
|
||||
--text-4xl: 2.25rem; // 36px
|
||||
--text-5xl: 3rem; // 48px
|
||||
--text-6xl: 3.75rem; // 60px
|
||||
--text-7xl: 4.5rem; // 72px
|
||||
--text-8xl: 6rem; // 96px
|
||||
--text-9xl: 8rem; // 128px
|
||||
|
||||
// Line heights
|
||||
--leading-none: 1;
|
||||
--leading-tight: 1.25;
|
||||
--leading-snug: 1.375;
|
||||
--leading-normal: 1.5;
|
||||
--leading-relaxed: 1.625;
|
||||
--leading-loose: 2;
|
||||
|
||||
// Spacing scale
|
||||
--space-0: 0;
|
||||
--space-px: 1px;
|
||||
--space-0-5: 0.125rem; // 2px
|
||||
--space-1: 0.25rem; // 4px
|
||||
--space-1-5: 0.375rem; // 6px
|
||||
--space-2: 0.5rem; // 8px
|
||||
--space-2-5: 0.625rem; // 10px
|
||||
--space-3: 0.75rem; // 12px
|
||||
--space-3-5: 0.875rem; // 14px
|
||||
--space-4: 1rem; // 16px
|
||||
--space-5: 1.25rem; // 20px
|
||||
--space-6: 1.5rem; // 24px
|
||||
--space-7: 1.75rem; // 28px
|
||||
--space-8: 2rem; // 32px
|
||||
--space-9: 2.25rem; // 36px
|
||||
--space-10: 2.5rem; // 40px
|
||||
--space-11: 2.75rem; // 44px
|
||||
--space-12: 3rem; // 48px
|
||||
--space-14: 3.5rem; // 56px
|
||||
--space-16: 4rem; // 64px
|
||||
--space-20: 5rem; // 80px
|
||||
--space-24: 6rem; // 96px
|
||||
--space-28: 7rem; // 112px
|
||||
--space-32: 8rem; // 128px
|
||||
--space-36: 9rem; // 144px
|
||||
--space-40: 10rem; // 160px
|
||||
--space-44: 11rem; // 176px
|
||||
--space-48: 12rem; // 192px
|
||||
--space-52: 13rem; // 208px
|
||||
--space-56: 14rem; // 224px
|
||||
--space-60: 15rem; // 240px
|
||||
--space-64: 16rem; // 256px
|
||||
--space-72: 18rem; // 288px
|
||||
--space-80: 20rem; // 320px
|
||||
--space-96: 24rem; // 384px
|
||||
|
||||
// Border radius
|
||||
--radius-none: 0;
|
||||
--radius-sm: 0.125rem; // 2px
|
||||
--radius-base: 0.25rem; // 4px
|
||||
--radius-md: 0.375rem; // 6px
|
||||
--radius-lg: 0.5rem; // 8px
|
||||
--radius-xl: 0.75rem; // 12px
|
||||
--radius-2xl: 1rem; // 16px
|
||||
--radius-3xl: 1.5rem; // 24px
|
||||
--radius-full: 9999px;
|
||||
|
||||
// Shadows
|
||||
--shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
||||
--shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
|
||||
--shadow-base: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
|
||||
--shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
|
||||
--shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
|
||||
--shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
|
||||
--shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
|
||||
--shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
|
||||
--shadow-none: 0 0 #0000;
|
||||
|
||||
// Legacy shadow mappings
|
||||
--shadow: var(--shadow-md);
|
||||
--shadow-secondary: var(--shadow-lg);
|
||||
|
||||
// Transitions and animations
|
||||
--transition-none: none;
|
||||
--transition-all: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
|
||||
--transition-default: all 0.3s ease-in-out;
|
||||
--transition-colors: color 150ms cubic-bezier(0.4, 0, 0.2, 1), background-color 150ms cubic-bezier(0.4, 0, 0.2, 1), border-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
|
||||
--transition-opacity: opacity 150ms cubic-bezier(0.4, 0, 0.2, 1);
|
||||
--transition-shadow: box-shadow 150ms cubic-bezier(0.4, 0, 0.2, 1);
|
||||
--transition-transform: transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
|
||||
|
||||
// Legacy transition mapping
|
||||
--transition: var(--transition-default);
|
||||
|
||||
// Animation durations
|
||||
--duration-75: 75ms;
|
||||
--duration-100: 100ms;
|
||||
--duration-150: 150ms;
|
||||
--duration-200: 200ms;
|
||||
--duration-300: 300ms;
|
||||
--duration-500: 500ms;
|
||||
--duration-700: 700ms;
|
||||
--duration-1000: 1000ms;
|
||||
|
||||
// Animation timing functions
|
||||
--ease-linear: linear;
|
||||
--ease-in: cubic-bezier(0.4, 0, 1, 1);
|
||||
--ease-out: cubic-bezier(0, 0, 0.2, 1);
|
||||
--ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
|
||||
|
||||
// Z-index scale
|
||||
--z-0: 0;
|
||||
--z-10: 10;
|
||||
--z-20: 20;
|
||||
--z-30: 30;
|
||||
--z-40: 40;
|
||||
--z-50: 50;
|
||||
--z-auto: auto;
|
||||
|
||||
// Breakpoints (for reference in media queries)
|
||||
--breakpoint-sm: 640px;
|
||||
--breakpoint-md: 768px;
|
||||
--breakpoint-lg: 1024px;
|
||||
--breakpoint-xl: 1280px;
|
||||
--breakpoint-2xl: 1536px;
|
||||
|
||||
// Container max widths
|
||||
--container-sm: 640px;
|
||||
--container-md: 768px;
|
||||
--container-lg: 1024px;
|
||||
--container-xl: 1280px;
|
||||
--container-2xl: 1536px;
|
||||
|
||||
// Glassmorphism
|
||||
--glass-bg: rgba(255, 255, 255, 0.1);
|
||||
--glass-border: rgba(255, 255, 255, 0.2);
|
||||
--glass-backdrop: blur(10px);
|
||||
|
||||
// Dark mode colors
|
||||
--dark-bg: var(--secondary-900);
|
||||
--dark-surface: var(--secondary-800);
|
||||
--dark-text: var(--secondary-100);
|
||||
--dark-text-secondary: var(--secondary-300);
|
||||
}
|
||||
|
||||
/* ====
|
||||
--------- (1.02) variables end ---------
|
||||
==== */
|
||||
1051
gnx-react/public/styles/base/_global.scss
Normal file
1051
gnx-react/public/styles/base/_global.scss
Normal file
File diff suppressed because it is too large
Load Diff
193
gnx-react/public/styles/base/_reset.scss
Normal file
193
gnx-react/public/styles/base/_reset.scss
Normal file
@@ -0,0 +1,193 @@
|
||||
/* ====
|
||||
--------- (2.01) reset styles start ---------
|
||||
==== */
|
||||
|
||||
* {
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
box-sizing: border-box;
|
||||
|
||||
&::-moz-selection {
|
||||
color: #ffffff;
|
||||
background-color: #1770c8;
|
||||
}
|
||||
|
||||
&::selection {
|
||||
color: #ffffff;
|
||||
background-color: #1770c8;
|
||||
}
|
||||
}
|
||||
|
||||
html {
|
||||
scroll-behavior: unset !important;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: var(--inter);
|
||||
font-size: 16px;
|
||||
line-height: 0px;
|
||||
font-weight: 400;
|
||||
color: var(--template-color);
|
||||
background-color: var(--template-bg);
|
||||
overflow-x: clip;
|
||||
max-width: 100vw;
|
||||
min-height: 100vh;
|
||||
text-transform: capitalize;
|
||||
|
||||
&::-webkit-scrollbar {
|
||||
width: 5px;
|
||||
}
|
||||
|
||||
&::-webkit-scrollbar-track {
|
||||
background-color: #cae6f7;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
&::-webkit-scrollbar-button,
|
||||
&::-webkit-scrollbar-thumb {
|
||||
background-color: var(--primary-color);
|
||||
border-radius: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
.body-active {
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
.my-app {
|
||||
position: relative;
|
||||
min-width: 100vw;
|
||||
min-height: 100vh;
|
||||
max-width: 100vw;
|
||||
overflow-x: clip;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.tp-app {
|
||||
overflow-x: clip !important;
|
||||
}
|
||||
|
||||
button {
|
||||
background-color: transparent;
|
||||
border: 0px;
|
||||
outline: 0px;
|
||||
}
|
||||
|
||||
a,
|
||||
button {
|
||||
text-decoration: none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
outline: 0px;
|
||||
border: 0px;
|
||||
transition: var(--transition);
|
||||
cursor: pointer;
|
||||
|
||||
i {
|
||||
font-size: inherit;
|
||||
line-height: inherit;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
text-decoration: none;
|
||||
border: 0px;
|
||||
outline: 0px;
|
||||
}
|
||||
&:focus {
|
||||
box-shadow: none;
|
||||
outline: 0px;
|
||||
}
|
||||
}
|
||||
|
||||
ul,
|
||||
ol {
|
||||
list-style-type: none;
|
||||
list-style-position: inside;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
hr,
|
||||
blockquote,
|
||||
textarea {
|
||||
margin: 0px;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
input,
|
||||
textarea {
|
||||
border: 0px;
|
||||
outline: 0px;
|
||||
|
||||
&:focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
}
|
||||
|
||||
input {
|
||||
&::-webkit-outer-spin-button,
|
||||
&::-webkit-inner-spin-button {
|
||||
-webkit-appearance: none;
|
||||
margin: 0px;
|
||||
}
|
||||
}
|
||||
|
||||
input[type="number"] {
|
||||
-moz-appearance: textfield;
|
||||
appearance: textfield;
|
||||
}
|
||||
|
||||
input[type="checkbox"] {
|
||||
width: initial;
|
||||
height: initial;
|
||||
}
|
||||
|
||||
textarea {
|
||||
min-height: 150px;
|
||||
resize: none;
|
||||
}
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0px;
|
||||
}
|
||||
|
||||
iframe {
|
||||
border: 0px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6,
|
||||
p {
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
color: var(--template-color);
|
||||
font-family: var(--inter);
|
||||
}
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--mont);
|
||||
text-transform: capitalize;
|
||||
}
|
||||
|
||||
.odometer {
|
||||
span {
|
||||
font-family: var(--mont) !important;
|
||||
}
|
||||
}
|
||||
|
||||
/* ====
|
||||
--------- (2.01) reset styles end ---------
|
||||
==== */
|
||||
122
gnx-react/public/styles/base/_typography.scss
Normal file
122
gnx-react/public/styles/base/_typography.scss
Normal file
@@ -0,0 +1,122 @@
|
||||
/* ====
|
||||
--------- (2.02) typography styles start ---------
|
||||
==== */
|
||||
|
||||
// Import IBM Plex Sans font
|
||||
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=IBM+Plex+Mono:wght@400;500;600&display=swap');
|
||||
|
||||
// Global font family
|
||||
* {
|
||||
font-family: var(--font-family-sans);
|
||||
}
|
||||
|
||||
// paragraph styles - Enterprise compact
|
||||
p,
|
||||
th,
|
||||
td,
|
||||
li,
|
||||
input,
|
||||
textarea,
|
||||
select,
|
||||
label,
|
||||
blockquote,
|
||||
span {
|
||||
font-size: 15px;
|
||||
line-height: 22px;
|
||||
font-weight: 400;
|
||||
color: var(--template-color);
|
||||
font-family: var(--font-family-sans);
|
||||
}
|
||||
|
||||
.text-xl {
|
||||
font-size: 20px;
|
||||
line-height: 28px;
|
||||
}
|
||||
|
||||
.text-xs {
|
||||
font-size: 14px;
|
||||
line-height: 22px;
|
||||
}
|
||||
|
||||
// link styles
|
||||
a,
|
||||
button {
|
||||
font-size: 16px;
|
||||
line-height: 22px;
|
||||
color: var(--template-color);
|
||||
font-weight: 400;
|
||||
cursor: pointer;
|
||||
display: inline-flex;
|
||||
gap: 8px;
|
||||
|
||||
&:hover {
|
||||
color: var(--primary-color);
|
||||
}
|
||||
}
|
||||
|
||||
// heading styles - Enterprise compact
|
||||
h1,
|
||||
.text-xxl {
|
||||
font-size: 42px;
|
||||
line-height: 50px;
|
||||
font-weight: 700;
|
||||
font-family: var(--font-family-display);
|
||||
letter-spacing: -0.02em;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 32px;
|
||||
line-height: 40px;
|
||||
font-weight: 600;
|
||||
font-family: var(--font-family-display);
|
||||
letter-spacing: -0.01em;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 24px;
|
||||
line-height: 32px;
|
||||
font-weight: 600;
|
||||
font-family: var(--font-family-display);
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: 20px;
|
||||
line-height: 28px;
|
||||
font-weight: 500;
|
||||
font-family: var(--font-family-display);
|
||||
}
|
||||
|
||||
h5 {
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
font-weight: 500;
|
||||
font-family: var(--font-family-display);
|
||||
}
|
||||
|
||||
h6 {
|
||||
font-size: 14px;
|
||||
line-height: 20px;
|
||||
font-weight: 500;
|
||||
font-family: var(--font-family-display);
|
||||
}
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6,
|
||||
p {
|
||||
a,
|
||||
span {
|
||||
font-family: inherit;
|
||||
font-size: inherit;
|
||||
line-height: inherit;
|
||||
font-weight: inherit;
|
||||
color: inherit;
|
||||
}
|
||||
}
|
||||
|
||||
/* ====
|
||||
--------- (2.02) typography styles end ---------
|
||||
==== */
|
||||
198
gnx-react/public/styles/components/_banner-fixes.scss
Normal file
198
gnx-react/public/styles/components/_banner-fixes.scss
Normal file
@@ -0,0 +1,198 @@
|
||||
/* ====
|
||||
--------- Banner Fixes and Enhancements ---------
|
||||
==== */
|
||||
|
||||
// Trust Indicators for Banner
|
||||
.about-banner .trust-indicators {
|
||||
display: flex;
|
||||
gap: 2rem;
|
||||
flex-wrap: wrap;
|
||||
margin-top: 2rem;
|
||||
|
||||
.trust-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
color: rgba(255, 255, 255, 0.8);
|
||||
font-size: 0.875rem;
|
||||
|
||||
i {
|
||||
color: #10b981;
|
||||
font-size: 1rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Floating Metrics for Banner
|
||||
.about-banner .floating-metrics {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
pointer-events: none;
|
||||
|
||||
.metric-card {
|
||||
position: absolute;
|
||||
background: rgba(255, 255, 255, 0.95);
|
||||
backdrop-filter: blur(20px);
|
||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||
border-radius: 16px;
|
||||
padding: 1rem;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.75rem;
|
||||
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
|
||||
animation: metricFloat 6s ease-in-out infinite;
|
||||
|
||||
.metric-icon {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
|
||||
border-radius: 10px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
|
||||
i {
|
||||
font-size: 1rem;
|
||||
color: var(--white);
|
||||
}
|
||||
}
|
||||
|
||||
.metric-content {
|
||||
.metric-value {
|
||||
font-size: 1.125rem;
|
||||
font-weight: 700;
|
||||
color: #1e293b;
|
||||
font-family: var(--font-family-display);
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.metric-label {
|
||||
font-size: 0.75rem;
|
||||
color: #64748b;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
margin-top: 0.25rem;
|
||||
}
|
||||
}
|
||||
|
||||
&.metric-1 {
|
||||
top: 10%;
|
||||
right: -20px;
|
||||
animation-delay: 0s;
|
||||
}
|
||||
|
||||
&.metric-2 {
|
||||
top: 50%;
|
||||
left: -20px;
|
||||
animation-delay: 2s;
|
||||
}
|
||||
|
||||
&.metric-3 {
|
||||
bottom: 20%;
|
||||
right: -20px;
|
||||
animation-delay: 4s;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Animation for floating metrics
|
||||
@keyframes metricFloat {
|
||||
0%, 100% {
|
||||
transform: translateY(0px);
|
||||
}
|
||||
50% {
|
||||
transform: translateY(-10px);
|
||||
}
|
||||
}
|
||||
|
||||
// Responsive adjustments for banner
|
||||
@media (max-width: 768px) {
|
||||
.about-banner {
|
||||
.trust-indicators {
|
||||
justify-content: center;
|
||||
gap: 1rem;
|
||||
|
||||
.trust-item {
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
}
|
||||
|
||||
.floating-metrics {
|
||||
.metric-card {
|
||||
padding: 0.75rem;
|
||||
|
||||
.metric-icon {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
|
||||
i {
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
}
|
||||
|
||||
.metric-content {
|
||||
.metric-value {
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.metric-label {
|
||||
font-size: 0.7rem;
|
||||
}
|
||||
}
|
||||
|
||||
&.metric-1 {
|
||||
top: 5%;
|
||||
right: -10px;
|
||||
}
|
||||
|
||||
&.metric-2 {
|
||||
top: 60%;
|
||||
left: -10px;
|
||||
}
|
||||
|
||||
&.metric-3 {
|
||||
bottom: 10%;
|
||||
right: -10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 480px) {
|
||||
.about-banner {
|
||||
.trust-indicators {
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 0.75rem;
|
||||
}
|
||||
|
||||
.floating-metrics {
|
||||
.metric-card {
|
||||
padding: 0.5rem;
|
||||
|
||||
.metric-icon {
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
|
||||
i {
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
}
|
||||
|
||||
.metric-content {
|
||||
.metric-value {
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.metric-label {
|
||||
font-size: 0.65rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
653
gnx-react/public/styles/components/_buttons.scss
Normal file
653
gnx-react/public/styles/components/_buttons.scss
Normal file
@@ -0,0 +1,653 @@
|
||||
/* ====
|
||||
--------- (3.01) buttons styles start ---------
|
||||
==== */
|
||||
|
||||
@use "../abstracts/mixins" as *;
|
||||
|
||||
// Base button styles using modern design system
|
||||
.btn {
|
||||
@include button-base;
|
||||
@include focus-visible;
|
||||
|
||||
// Legacy styles for backward compatibility
|
||||
padding: var(--space-4) var(--space-10);
|
||||
font-weight: var(--font-weight-semibold);
|
||||
border: 1px solid var(--secondary-300);
|
||||
border-radius: var(--radius-lg);
|
||||
color: var(--secondary-600);
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
text-transform: capitalize;
|
||||
z-index: 1;
|
||||
letter-spacing: 0.5px;
|
||||
|
||||
&::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
inset: 0px;
|
||||
width: 0px;
|
||||
transition: var(--transition-default);
|
||||
background-color: var(--primary-600);
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
&:hover:not(:disabled) {
|
||||
border-color: var(--primary-600);
|
||||
color: var(--white);
|
||||
transform: translateY(-1px);
|
||||
box-shadow: var(--shadow-md);
|
||||
|
||||
&::before {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
&:active:not(:disabled) {
|
||||
transform: translateY(0);
|
||||
box-shadow: var(--shadow-sm);
|
||||
}
|
||||
|
||||
&:focus {
|
||||
outline: none;
|
||||
box-shadow: 0 0 0 3px rgba(var(--primary-600), 0.1);
|
||||
}
|
||||
|
||||
// Button variants
|
||||
&.btn-primary {
|
||||
background-color: var(--primary-600);
|
||||
border-color: var(--primary-600);
|
||||
color: var(--white);
|
||||
|
||||
&::before {
|
||||
background-color: var(--primary-700);
|
||||
}
|
||||
|
||||
&:hover:not(:disabled) {
|
||||
background-color: var(--primary-700);
|
||||
border-color: var(--primary-700);
|
||||
}
|
||||
}
|
||||
|
||||
&.btn-secondary {
|
||||
background-color: var(--secondary-100);
|
||||
border-color: var(--secondary-200);
|
||||
color: var(--secondary-700);
|
||||
|
||||
&::before {
|
||||
background-color: var(--secondary-200);
|
||||
}
|
||||
|
||||
&:hover:not(:disabled) {
|
||||
background-color: var(--secondary-200);
|
||||
border-color: var(--secondary-300);
|
||||
color: var(--secondary-800);
|
||||
}
|
||||
}
|
||||
|
||||
&.btn-outline {
|
||||
background-color: transparent;
|
||||
border-color: var(--primary-600);
|
||||
color: var(--primary-600);
|
||||
|
||||
&::before {
|
||||
background-color: var(--primary-600);
|
||||
}
|
||||
|
||||
&:hover:not(:disabled) {
|
||||
background-color: var(--primary-600);
|
||||
color: var(--white);
|
||||
}
|
||||
}
|
||||
|
||||
&.btn-ghost {
|
||||
background-color: transparent;
|
||||
border-color: transparent;
|
||||
color: var(--secondary-600);
|
||||
|
||||
&::before {
|
||||
background-color: var(--secondary-100);
|
||||
}
|
||||
|
||||
&:hover:not(:disabled) {
|
||||
background-color: var(--secondary-100);
|
||||
color: var(--secondary-800);
|
||||
}
|
||||
}
|
||||
|
||||
// Button sizes
|
||||
&.btn-sm {
|
||||
padding: var(--space-2) var(--space-4);
|
||||
font-size: var(--text-xs);
|
||||
border-radius: var(--radius-md);
|
||||
}
|
||||
|
||||
&.btn-lg {
|
||||
padding: var(--space-4) var(--space-8);
|
||||
font-size: var(--text-lg);
|
||||
border-radius: var(--radius-xl);
|
||||
}
|
||||
|
||||
&.btn-xl {
|
||||
padding: var(--space-5) var(--space-10);
|
||||
font-size: var(--text-xl);
|
||||
border-radius: var(--radius-2xl);
|
||||
}
|
||||
|
||||
// Button states
|
||||
&.btn-loading {
|
||||
position: relative;
|
||||
color: transparent;
|
||||
|
||||
&::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
margin: -8px 0 0 -8px;
|
||||
border: 2px solid currentColor;
|
||||
border-top-color: transparent;
|
||||
border-radius: 50%;
|
||||
animation: spin 1s linear infinite;
|
||||
}
|
||||
}
|
||||
|
||||
&.btn-disabled,
|
||||
&:disabled {
|
||||
opacity: 0.5;
|
||||
cursor: not-allowed;
|
||||
pointer-events: none;
|
||||
}
|
||||
}
|
||||
|
||||
// Modern animated button with improved accessibility
|
||||
.btn-anim {
|
||||
@include flex-center;
|
||||
@include focus-visible;
|
||||
|
||||
width: 170px;
|
||||
height: 170px;
|
||||
border: 1px solid var(--white);
|
||||
border-radius: 50%;
|
||||
color: var(--white);
|
||||
font-weight: var(--font-weight-semibold);
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
gap: var(--space-4);
|
||||
z-index: 1;
|
||||
padding: 0;
|
||||
transition: var(--transition-default);
|
||||
|
||||
span {
|
||||
position: absolute;
|
||||
z-index: -1;
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-radius: 50%;
|
||||
background: var(--primary-600);
|
||||
transform: translate(-50%, -50%);
|
||||
pointer-events: none;
|
||||
transition: width 0.7s cubic-bezier(0.4, 0, 0.2, 1),
|
||||
padding-top 0.7s cubic-bezier(0.4, 0, 0.2, 1);
|
||||
}
|
||||
|
||||
&:hover:not(:disabled) {
|
||||
color: var(--white);
|
||||
border-color: var(--primary-600);
|
||||
transform: scale(1.05);
|
||||
|
||||
span {
|
||||
width: calc(100% * 2.25);
|
||||
padding-top: calc(100% * 2.25);
|
||||
}
|
||||
}
|
||||
|
||||
&:active:not(:disabled) {
|
||||
transform: scale(0.98);
|
||||
}
|
||||
|
||||
// Responsive sizing
|
||||
@include mobile-only {
|
||||
width: 140px;
|
||||
height: 140px;
|
||||
font-size: var(--text-sm);
|
||||
}
|
||||
}
|
||||
|
||||
// Alternative button style with modern improvements
|
||||
.alter-btn {
|
||||
@include flex-center;
|
||||
@include focus-visible;
|
||||
|
||||
padding: var(--space-16) var(--space-10);
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
border-radius: 50%;
|
||||
display: inline-flex;
|
||||
flex-wrap: wrap;
|
||||
row-gap: var(--space-2);
|
||||
border: 1px solid var(--white);
|
||||
color: var(--white);
|
||||
justify-content: flex-start;
|
||||
font-weight: var(--font-weight-semibold);
|
||||
font-size: var(--text-lg);
|
||||
transition: var(--transition-default);
|
||||
|
||||
&:hover:not(:disabled) {
|
||||
color: var(--secondary-800);
|
||||
border-color: var(--primary-600);
|
||||
background-color: var(--white);
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
&:active:not(:disabled) {
|
||||
transform: scale(0.98);
|
||||
}
|
||||
|
||||
// Responsive sizing
|
||||
@include mobile-only {
|
||||
width: 160px;
|
||||
height: 160px;
|
||||
padding: var(--space-12) var(--space-8);
|
||||
font-size: var(--text-base);
|
||||
}
|
||||
}
|
||||
|
||||
// Light variant of animated button
|
||||
.btn-anim-light {
|
||||
@include focus-visible;
|
||||
|
||||
border: 1px solid var(--secondary-800);
|
||||
color: var(--secondary-800);
|
||||
background-color: var(--white);
|
||||
|
||||
span {
|
||||
background-color: var(--primary-600);
|
||||
}
|
||||
|
||||
&:hover:not(:disabled) {
|
||||
border-color: var(--primary-600);
|
||||
color: var(--white);
|
||||
background-color: var(--primary-600);
|
||||
}
|
||||
}
|
||||
|
||||
// Modern line button with improved animations
|
||||
.btn-line {
|
||||
@include focus-visible;
|
||||
|
||||
font-weight: var(--font-weight-semibold);
|
||||
letter-spacing: 0.5px;
|
||||
color: var(--secondary-600);
|
||||
position: relative;
|
||||
background: none;
|
||||
border: none;
|
||||
padding: var(--space-2) 0;
|
||||
cursor: pointer;
|
||||
transition: var(--transition-colors);
|
||||
|
||||
&::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
background-color: var(--secondary-300);
|
||||
transition: var(--transition-default);
|
||||
}
|
||||
|
||||
&::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
width: 0;
|
||||
height: 2px;
|
||||
background-color: var(--primary-600);
|
||||
transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
||||
}
|
||||
|
||||
&:hover:not(:disabled) {
|
||||
color: var(--primary-600);
|
||||
|
||||
&::before {
|
||||
width: 0;
|
||||
left: 100%;
|
||||
}
|
||||
|
||||
&::after {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
&:active:not(:disabled) {
|
||||
color: var(--primary-700);
|
||||
}
|
||||
}
|
||||
|
||||
// Modern button variants
|
||||
.btn-gradient {
|
||||
@include button-base;
|
||||
@include focus-visible;
|
||||
|
||||
background: linear-gradient(135deg, var(--primary-600), var(--primary-400));
|
||||
border: none;
|
||||
color: var(--white);
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
|
||||
&::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: -100%;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
|
||||
transition: left 0.5s;
|
||||
}
|
||||
|
||||
&:hover:not(:disabled) {
|
||||
background: linear-gradient(135deg, var(--primary-700), var(--primary-500));
|
||||
transform: translateY(-2px);
|
||||
box-shadow: var(--shadow-lg);
|
||||
|
||||
&::before {
|
||||
left: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.btn-glass {
|
||||
@include button-base;
|
||||
@include focus-visible;
|
||||
@include glassmorphism(0.1, 10px);
|
||||
|
||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||
color: var(--white);
|
||||
backdrop-filter: blur(10px);
|
||||
|
||||
&:hover:not(:disabled) {
|
||||
background: rgba(255, 255, 255, 0.2);
|
||||
border-color: rgba(255, 255, 255, 0.3);
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
}
|
||||
|
||||
.btn-floating {
|
||||
@include button-base;
|
||||
@include focus-visible;
|
||||
@include shadow-elevation(3);
|
||||
|
||||
border-radius: var(--radius-full);
|
||||
width: 56px;
|
||||
height: 56px;
|
||||
padding: 0;
|
||||
|
||||
&:hover:not(:disabled) {
|
||||
@include shadow-elevation(4);
|
||||
transform: translateY(-4px) scale(1.05);
|
||||
}
|
||||
|
||||
&:active:not(:disabled) {
|
||||
transform: translateY(-2px) scale(1.02);
|
||||
}
|
||||
}
|
||||
|
||||
.btn-icon {
|
||||
@include button-base;
|
||||
@include focus-visible;
|
||||
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
padding: 0;
|
||||
border-radius: var(--radius-lg);
|
||||
|
||||
i {
|
||||
font-size: var(--text-lg);
|
||||
}
|
||||
|
||||
&:hover:not(:disabled) {
|
||||
transform: scale(1.1);
|
||||
}
|
||||
}
|
||||
|
||||
// Legacy angle button with modern improvements
|
||||
.btn-angle {
|
||||
position: relative;
|
||||
font-weight: 400;
|
||||
padding: 6px 24px;
|
||||
font-size: 16px;
|
||||
text-align: center;
|
||||
justify-content: center;
|
||||
gap: 0px;
|
||||
&::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
top: 0px;
|
||||
left: 0px;
|
||||
border-left: 1px solid white;
|
||||
border-top: 1px solid white;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
&::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
top: 0px;
|
||||
right: 0px;
|
||||
border-right: 1px solid white;
|
||||
border-top: 1px solid white;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
span {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
span::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
bottom: 0px;
|
||||
right: 0px;
|
||||
border-right: 1px solid white;
|
||||
border-bottom: 1px solid white;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
span::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
bottom: 0px;
|
||||
left: 0px;
|
||||
border-left: 1px solid white;
|
||||
border-bottom: 1px solid white;
|
||||
transition: var(--transition);
|
||||
}
|
||||
&:hover {
|
||||
&::after,
|
||||
&::before,
|
||||
span::after,
|
||||
span::before {
|
||||
width: calc(50% + 0px);
|
||||
height: calc(50% + 0px);
|
||||
border-color: var(--enterprise-blue);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// scroll to top with progress
|
||||
.progress-wrap {
|
||||
position: fixed;
|
||||
right: 30px;
|
||||
bottom: 30px;
|
||||
height: 50px;
|
||||
width: 50px;
|
||||
cursor: pointer;
|
||||
display: block;
|
||||
border-radius: 50px;
|
||||
background-color: #1f1f1f;
|
||||
box-shadow: inset 0 0 0 8px #1f1f1f;
|
||||
z-index: 10000;
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transform: translateY(15px);
|
||||
transition: all 200ms linear;
|
||||
z-index: 999;
|
||||
overflow: hidden;
|
||||
|
||||
span {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
width: 34px;
|
||||
height: 34px;
|
||||
background-color: var(--white);
|
||||
border-radius: 50%;
|
||||
overflow: hidden;
|
||||
&::after {
|
||||
content: "\f176";
|
||||
font-family: "Font Awesome 6 Free";
|
||||
font-weight: 900;
|
||||
position: absolute;
|
||||
text-align: center;
|
||||
line-height: 34px;
|
||||
font-size: 16px;
|
||||
border-radius: 50%;
|
||||
color: var(--black);
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
transform: translate(-50%, 200%);
|
||||
height: 34px;
|
||||
width: 34px;
|
||||
cursor: pointer;
|
||||
display: block;
|
||||
z-index: 1;
|
||||
transition: all 200ms linear;
|
||||
}
|
||||
|
||||
&::before {
|
||||
content: "\f176";
|
||||
font-family: "Font Awesome 6 Free";
|
||||
font-weight: 900;
|
||||
text-align: center;
|
||||
line-height: 34px;
|
||||
position: absolute;
|
||||
font-size: 16px;
|
||||
border-radius: 50%;
|
||||
color: var(--black);
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
height: 34px;
|
||||
width: 34px;
|
||||
cursor: pointer;
|
||||
display: block;
|
||||
z-index: 2;
|
||||
transition: all 200ms linear;
|
||||
}
|
||||
}
|
||||
|
||||
&:hover {
|
||||
span {
|
||||
&::before {
|
||||
transform: translate(-50%, -200%);
|
||||
}
|
||||
&::after {
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
path {
|
||||
fill: none;
|
||||
}
|
||||
|
||||
.progress-circle {
|
||||
path {
|
||||
stroke: var(--enterprise-blue);
|
||||
stroke-width: 4;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.active-progress {
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
// Animations
|
||||
@keyframes spin {
|
||||
from {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
to {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
// Button group utilities
|
||||
.btn-group {
|
||||
display: inline-flex;
|
||||
border-radius: var(--radius-lg);
|
||||
overflow: hidden;
|
||||
|
||||
.btn {
|
||||
border-radius: 0;
|
||||
border-right-width: 0;
|
||||
|
||||
&:first-child {
|
||||
border-top-left-radius: var(--radius-lg);
|
||||
border-bottom-left-radius: var(--radius-lg);
|
||||
}
|
||||
|
||||
&:last-child {
|
||||
border-top-right-radius: var(--radius-lg);
|
||||
border-bottom-right-radius: var(--radius-lg);
|
||||
border-right-width: 1px;
|
||||
}
|
||||
|
||||
&:only-child {
|
||||
border-radius: var(--radius-lg);
|
||||
border-right-width: 1px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Responsive button adjustments
|
||||
@include mobile-only {
|
||||
.btn {
|
||||
padding: var(--space-3) var(--space-6);
|
||||
font-size: var(--text-sm);
|
||||
}
|
||||
|
||||
.btn-anim {
|
||||
width: 120px;
|
||||
height: 120px;
|
||||
font-size: var(--text-sm);
|
||||
}
|
||||
|
||||
.alter-btn {
|
||||
width: 140px;
|
||||
height: 140px;
|
||||
padding: var(--space-8) var(--space-6);
|
||||
}
|
||||
}
|
||||
|
||||
/* ====
|
||||
--------- (3.01) buttons styles end ---------
|
||||
==== */
|
||||
689
gnx-react/public/styles/components/_cookie-consent.scss
Normal file
689
gnx-react/public/styles/components/_cookie-consent.scss
Normal file
@@ -0,0 +1,689 @@
|
||||
/* ==============
|
||||
========= Cookie Consent Styles =========
|
||||
============== */
|
||||
|
||||
// Cookie Consent Banner
|
||||
.cookie-consent-banner {
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
z-index: var(--z-50);
|
||||
background: var(--white);
|
||||
border-top: 1px solid var(--secondary-200);
|
||||
box-shadow: var(--shadow-lg);
|
||||
padding: var(--space-6);
|
||||
|
||||
@media (max-width: 768px) {
|
||||
padding: var(--space-4);
|
||||
}
|
||||
|
||||
&__container {
|
||||
max-width: var(--container-xl);
|
||||
margin: 0 auto;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: var(--space-6);
|
||||
|
||||
@media (max-width: 768px) {
|
||||
flex-direction: column;
|
||||
gap: var(--space-4);
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
&__content {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: var(--space-4);
|
||||
flex: 1;
|
||||
|
||||
@media (max-width: 768px) {
|
||||
flex-direction: column;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
&__icon {
|
||||
flex-shrink: 0;
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
background: var(--primary-100);
|
||||
border-radius: var(--radius-full);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: var(--primary-600);
|
||||
font-size: var(--text-xl);
|
||||
|
||||
@media (max-width: 768px) {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
font-size: var(--text-lg);
|
||||
}
|
||||
}
|
||||
|
||||
&__text {
|
||||
flex: 1;
|
||||
|
||||
h3 {
|
||||
font-size: var(--text-lg);
|
||||
font-weight: var(--font-weight-semibold);
|
||||
color: var(--secondary-800);
|
||||
margin: 0 0 var(--space-2) 0;
|
||||
line-height: var(--leading-tight);
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: var(--text-sm);
|
||||
color: var(--secondary-600);
|
||||
margin: 0 0 var(--space-3) 0;
|
||||
line-height: var(--leading-relaxed);
|
||||
max-width: 600px;
|
||||
}
|
||||
}
|
||||
|
||||
&__links {
|
||||
display: flex;
|
||||
gap: var(--space-4);
|
||||
flex-wrap: wrap;
|
||||
|
||||
a {
|
||||
font-size: var(--text-xs);
|
||||
color: var(--primary-600);
|
||||
text-decoration: none;
|
||||
font-weight: var(--font-weight-medium);
|
||||
border-bottom: 1px solid transparent;
|
||||
transition: var(--transition-colors);
|
||||
|
||||
&:hover {
|
||||
color: var(--primary-700);
|
||||
border-bottom-color: var(--primary-600);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&__actions {
|
||||
display: flex;
|
||||
gap: var(--space-3);
|
||||
flex-shrink: 0;
|
||||
|
||||
@media (max-width: 768px) {
|
||||
width: 100%;
|
||||
justify-content: center;
|
||||
}
|
||||
}
|
||||
|
||||
&__btn {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: var(--space-2);
|
||||
padding: var(--space-3) var(--space-5);
|
||||
border-radius: var(--radius-lg);
|
||||
font-size: var(--text-sm);
|
||||
font-weight: var(--font-weight-medium);
|
||||
text-decoration: none;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
transition: var(--transition-all);
|
||||
white-space: nowrap;
|
||||
|
||||
@media (max-width: 768px) {
|
||||
flex: 1;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
&--primary {
|
||||
background: var(--primary-600);
|
||||
color: var(--white);
|
||||
|
||||
&:hover {
|
||||
background: var(--primary-700);
|
||||
transform: translateY(-1px);
|
||||
box-shadow: var(--shadow-md);
|
||||
}
|
||||
|
||||
&:active {
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
&--secondary {
|
||||
background: var(--secondary-100);
|
||||
color: var(--secondary-700);
|
||||
border: 1px solid var(--secondary-200);
|
||||
|
||||
&:hover {
|
||||
background: var(--secondary-200);
|
||||
border-color: var(--secondary-300);
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
||||
&:active {
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
i {
|
||||
font-size: var(--text-xs);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Cookie Settings Modal
|
||||
.cookie-settings-overlay {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
backdrop-filter: blur(4px);
|
||||
z-index: var(--z-50);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: var(--space-4);
|
||||
}
|
||||
|
||||
.cookie-settings-modal {
|
||||
background: var(--white);
|
||||
border-radius: var(--radius-2xl);
|
||||
box-shadow: var(--shadow-2xl);
|
||||
max-width: 600px;
|
||||
width: 100%;
|
||||
max-height: 90vh;
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
&__header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: var(--space-6);
|
||||
border-bottom: 1px solid var(--secondary-200);
|
||||
background: var(--secondary-50);
|
||||
}
|
||||
|
||||
&__header-content {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: var(--space-3);
|
||||
|
||||
h2 {
|
||||
font-size: var(--text-xl);
|
||||
font-weight: var(--font-weight-semibold);
|
||||
color: var(--secondary-800);
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
|
||||
&__version {
|
||||
font-size: var(--text-xs);
|
||||
color: var(--secondary-500);
|
||||
background: var(--secondary-200);
|
||||
padding: var(--space-1) var(--space-2);
|
||||
border-radius: var(--radius-sm);
|
||||
font-weight: var(--font-weight-medium);
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
&__close {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
border: none;
|
||||
background: var(--secondary-100);
|
||||
border-radius: var(--radius-full);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
cursor: pointer;
|
||||
color: var(--secondary-600);
|
||||
transition: var(--transition-all);
|
||||
|
||||
&:hover {
|
||||
background: var(--secondary-200);
|
||||
color: var(--secondary-800);
|
||||
}
|
||||
|
||||
i {
|
||||
font-size: var(--text-sm);
|
||||
}
|
||||
}
|
||||
|
||||
&__content {
|
||||
padding: var(--space-6);
|
||||
overflow-y: auto;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
&__description {
|
||||
margin-bottom: var(--space-6);
|
||||
|
||||
p {
|
||||
font-size: var(--text-sm);
|
||||
color: var(--secondary-600);
|
||||
line-height: var(--leading-relaxed);
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
|
||||
&__types {
|
||||
margin-bottom: var(--space-6);
|
||||
}
|
||||
|
||||
&__type {
|
||||
padding: var(--space-4);
|
||||
border: 1px solid var(--secondary-200);
|
||||
border-radius: var(--radius-lg);
|
||||
margin-bottom: var(--space-4);
|
||||
transition: var(--transition-all);
|
||||
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
&--required {
|
||||
background: var(--secondary-50);
|
||||
border-color: var(--primary-200);
|
||||
}
|
||||
|
||||
&:hover {
|
||||
border-color: var(--secondary-300);
|
||||
box-shadow: var(--shadow-sm);
|
||||
}
|
||||
}
|
||||
|
||||
&__type-header {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
justify-content: space-between;
|
||||
gap: var(--space-4);
|
||||
}
|
||||
|
||||
&__type-info {
|
||||
display: flex;
|
||||
gap: var(--space-3);
|
||||
flex: 1;
|
||||
|
||||
i {
|
||||
color: var(--primary-600);
|
||||
font-size: var(--text-lg);
|
||||
margin-top: 2px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: var(--text-base);
|
||||
font-weight: var(--font-weight-semibold);
|
||||
color: var(--secondary-800);
|
||||
margin: 0 0 var(--space-1) 0;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: var(--text-sm);
|
||||
color: var(--secondary-600);
|
||||
line-height: var(--leading-relaxed);
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
|
||||
&__type-toggle {
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
&__privacy {
|
||||
background: var(--secondary-50);
|
||||
padding: var(--space-4);
|
||||
border-radius: var(--radius-lg);
|
||||
border: 1px solid var(--secondary-200);
|
||||
|
||||
h4 {
|
||||
font-size: var(--text-base);
|
||||
font-weight: var(--font-weight-semibold);
|
||||
color: var(--secondary-800);
|
||||
margin: 0 0 var(--space-3) 0;
|
||||
}
|
||||
|
||||
ul {
|
||||
margin: 0;
|
||||
padding-left: var(--space-5);
|
||||
|
||||
li {
|
||||
font-size: var(--text-sm);
|
||||
color: var(--secondary-600);
|
||||
line-height: var(--leading-relaxed);
|
||||
margin-bottom: var(--space-2);
|
||||
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&__footer {
|
||||
display: flex;
|
||||
gap: var(--space-3);
|
||||
padding: var(--space-6);
|
||||
border-top: 1px solid var(--secondary-200);
|
||||
background: var(--secondary-50);
|
||||
justify-content: flex-end;
|
||||
}
|
||||
|
||||
&__btn {
|
||||
padding: var(--space-3) var(--space-5);
|
||||
border-radius: var(--radius-lg);
|
||||
font-size: var(--text-sm);
|
||||
font-weight: var(--font-weight-medium);
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
transition: var(--transition-all);
|
||||
min-width: 120px;
|
||||
|
||||
&--primary {
|
||||
background: var(--primary-600);
|
||||
color: var(--white);
|
||||
|
||||
&:hover {
|
||||
background: var(--primary-700);
|
||||
transform: translateY(-1px);
|
||||
box-shadow: var(--shadow-md);
|
||||
}
|
||||
}
|
||||
|
||||
&--secondary {
|
||||
background: var(--white);
|
||||
color: var(--secondary-700);
|
||||
border: 1px solid var(--secondary-300);
|
||||
|
||||
&:hover {
|
||||
background: var(--secondary-50);
|
||||
border-color: var(--secondary-400);
|
||||
}
|
||||
}
|
||||
|
||||
&--outline {
|
||||
background: transparent;
|
||||
color: var(--primary-600);
|
||||
border: 1px solid var(--primary-300);
|
||||
|
||||
&:hover {
|
||||
background: var(--primary-50);
|
||||
border-color: var(--primary-400);
|
||||
}
|
||||
}
|
||||
|
||||
&--danger {
|
||||
background: var(--error);
|
||||
color: var(--white);
|
||||
|
||||
&:hover {
|
||||
background: #dc2626;
|
||||
transform: translateY(-1px);
|
||||
box-shadow: var(--shadow-md);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Enterprise features styling
|
||||
.cookie-settings-modal__enterprise {
|
||||
background: var(--primary-50);
|
||||
padding: var(--space-4);
|
||||
border-radius: var(--radius-lg);
|
||||
border: 1px solid var(--primary-200);
|
||||
margin-top: var(--space-4);
|
||||
|
||||
h4 {
|
||||
font-size: var(--text-base);
|
||||
font-weight: var(--font-weight-semibold);
|
||||
color: var(--primary-800);
|
||||
margin: 0 0 var(--space-3) 0;
|
||||
}
|
||||
}
|
||||
|
||||
.cookie-settings-modal__enterprise-actions {
|
||||
display: flex;
|
||||
gap: var(--space-3);
|
||||
flex-wrap: wrap;
|
||||
|
||||
@media (max-width: 640px) {
|
||||
flex-direction: column;
|
||||
}
|
||||
}
|
||||
|
||||
// Cookie Toggle Switch
|
||||
.cookie-toggle {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
width: 48px;
|
||||
height: 24px;
|
||||
|
||||
input {
|
||||
opacity: 0;
|
||||
width: 0;
|
||||
height: 0;
|
||||
|
||||
&:checked + .cookie-toggle__slider {
|
||||
background: var(--primary-600);
|
||||
|
||||
&:before {
|
||||
transform: translateX(24px);
|
||||
}
|
||||
}
|
||||
|
||||
&:disabled + .cookie-toggle__slider {
|
||||
background: var(--secondary-300);
|
||||
cursor: not-allowed;
|
||||
|
||||
&:before {
|
||||
background: var(--secondary-400);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&__slider {
|
||||
position: absolute;
|
||||
cursor: pointer;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background: var(--secondary-300);
|
||||
transition: var(--transition-all);
|
||||
border-radius: var(--radius-full);
|
||||
|
||||
&:before {
|
||||
position: absolute;
|
||||
content: "";
|
||||
height: 18px;
|
||||
width: 18px;
|
||||
left: 3px;
|
||||
bottom: 3px;
|
||||
background: var(--white);
|
||||
transition: var(--transition-all);
|
||||
border-radius: var(--radius-full);
|
||||
box-shadow: var(--shadow-sm);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Cookie Preferences Display (for footer/privacy page)
|
||||
.cookie-preferences-display {
|
||||
background: var(--secondary-50);
|
||||
padding: var(--space-6);
|
||||
border-radius: var(--radius-lg);
|
||||
border: 1px solid var(--secondary-200);
|
||||
|
||||
h3 {
|
||||
font-size: var(--text-lg);
|
||||
font-weight: var(--font-weight-semibold);
|
||||
color: var(--secondary-800);
|
||||
margin: 0 0 var(--space-4) 0;
|
||||
}
|
||||
|
||||
&__status {
|
||||
margin-bottom: var(--space-4);
|
||||
|
||||
p {
|
||||
font-size: var(--text-sm);
|
||||
color: var(--secondary-600);
|
||||
margin: 0 0 var(--space-2) 0;
|
||||
line-height: var(--leading-relaxed);
|
||||
|
||||
strong {
|
||||
color: var(--secondary-800);
|
||||
font-weight: var(--font-weight-medium);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&__actions {
|
||||
display: flex;
|
||||
gap: var(--space-3);
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
&__btn {
|
||||
padding: var(--space-2) var(--space-4);
|
||||
border-radius: var(--radius-md);
|
||||
font-size: var(--text-sm);
|
||||
font-weight: var(--font-weight-medium);
|
||||
border: 1px solid var(--secondary-300);
|
||||
background: var(--white);
|
||||
color: var(--secondary-700);
|
||||
cursor: pointer;
|
||||
transition: var(--transition-all);
|
||||
|
||||
&:hover {
|
||||
background: var(--secondary-50);
|
||||
border-color: var(--secondary-400);
|
||||
}
|
||||
|
||||
&--reset {
|
||||
color: var(--error);
|
||||
border-color: var(--error);
|
||||
|
||||
&:hover {
|
||||
background: var(--error);
|
||||
color: var(--white);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Responsive adjustments
|
||||
@media (max-width: 640px) {
|
||||
.cookie-settings-modal {
|
||||
margin: var(--space-4);
|
||||
max-height: calc(100vh - var(--space-8));
|
||||
|
||||
&__header,
|
||||
&__content,
|
||||
&__footer {
|
||||
padding: var(--space-4);
|
||||
}
|
||||
|
||||
&__type-header {
|
||||
flex-direction: column;
|
||||
gap: var(--space-3);
|
||||
}
|
||||
|
||||
&__type-toggle {
|
||||
align-self: flex-start;
|
||||
}
|
||||
}
|
||||
|
||||
.cookie-preferences-display {
|
||||
padding: var(--space-4);
|
||||
|
||||
&__actions {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
&__btn {
|
||||
width: 100%;
|
||||
justify-content: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Dark mode support (if needed in the future)
|
||||
@media (prefers-color-scheme: dark) {
|
||||
.cookie-consent-banner {
|
||||
background: var(--secondary-800);
|
||||
border-top-color: var(--secondary-700);
|
||||
|
||||
&__text h3 {
|
||||
color: var(--secondary-100);
|
||||
}
|
||||
|
||||
&__text p {
|
||||
color: var(--secondary-300);
|
||||
}
|
||||
}
|
||||
|
||||
.cookie-settings-modal {
|
||||
background: var(--secondary-800);
|
||||
|
||||
&__header {
|
||||
background: var(--secondary-900);
|
||||
border-bottom-color: var(--secondary-700);
|
||||
|
||||
h2 {
|
||||
color: var(--secondary-100);
|
||||
}
|
||||
}
|
||||
|
||||
&__close {
|
||||
background: var(--secondary-700);
|
||||
color: var(--secondary-300);
|
||||
|
||||
&:hover {
|
||||
background: var(--secondary-600);
|
||||
color: var(--secondary-100);
|
||||
}
|
||||
}
|
||||
|
||||
&__type {
|
||||
background: var(--secondary-700);
|
||||
border-color: var(--secondary-600);
|
||||
|
||||
&--required {
|
||||
background: var(--secondary-700);
|
||||
border-color: var(--primary-400);
|
||||
}
|
||||
}
|
||||
|
||||
&__type-info {
|
||||
h4 {
|
||||
color: var(--secondary-100);
|
||||
}
|
||||
|
||||
p {
|
||||
color: var(--secondary-300);
|
||||
}
|
||||
}
|
||||
|
||||
&__privacy {
|
||||
background: var(--secondary-700);
|
||||
border-color: var(--secondary-600);
|
||||
|
||||
h4 {
|
||||
color: var(--secondary-100);
|
||||
}
|
||||
|
||||
li {
|
||||
color: var(--secondary-300);
|
||||
}
|
||||
}
|
||||
|
||||
&__footer {
|
||||
background: var(--secondary-900);
|
||||
border-top-color: var(--secondary-700);
|
||||
}
|
||||
}
|
||||
}
|
||||
166
gnx-react/public/styles/components/_eye-friendly.scss
Normal file
166
gnx-react/public/styles/components/_eye-friendly.scss
Normal file
@@ -0,0 +1,166 @@
|
||||
/* ====
|
||||
--------- Eye-friendly UI improvements ---------
|
||||
==== */
|
||||
|
||||
// Improved readability and visual hierarchy
|
||||
.eye-friendly {
|
||||
// Better line spacing for readability
|
||||
p, .cur-lg {
|
||||
line-height: 1.6 !important;
|
||||
letter-spacing: 0.01em;
|
||||
}
|
||||
|
||||
// Reduced visual weight for headings
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
letter-spacing: -0.02em;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
// Softer colors for better eye comfort
|
||||
.text-muted {
|
||||
color: #6b7280 !important;
|
||||
}
|
||||
|
||||
// Improved button styling
|
||||
.btn-line {
|
||||
font-weight: 500;
|
||||
letter-spacing: 0.05em;
|
||||
text-transform: uppercase;
|
||||
font-size: 12px !important;
|
||||
padding: 8px 16px;
|
||||
border-radius: 4px;
|
||||
transition: all 0.3s ease;
|
||||
|
||||
&:hover {
|
||||
transform: translateY(-1px);
|
||||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
}
|
||||
|
||||
// Better spacing for cards
|
||||
.capability-card {
|
||||
padding: 24px;
|
||||
border-radius: 8px;
|
||||
background: #ffffff;
|
||||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
|
||||
transition: all 0.3s ease;
|
||||
border: 1px solid #f1f5f9;
|
||||
|
||||
&:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
|
||||
border-color: #e2e8f0;
|
||||
}
|
||||
|
||||
.capability-icon {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background: #f8fafc;
|
||||
border-radius: 8px;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
// Improved section spacing
|
||||
section {
|
||||
padding-top: 60px !important;
|
||||
padding-bottom: 60px !important;
|
||||
}
|
||||
|
||||
// Fix navbar overlap issue
|
||||
.fix-top {
|
||||
padding-top: 140px !important;
|
||||
}
|
||||
|
||||
// Better container max-width for readability
|
||||
.container {
|
||||
max-width: 1200px;
|
||||
}
|
||||
|
||||
// Improved banner styling
|
||||
.about-banner {
|
||||
padding-top: 140px !important;
|
||||
|
||||
.about-banner__content {
|
||||
h1, h2 {
|
||||
font-weight: 600;
|
||||
letter-spacing: -0.02em;
|
||||
// Ensure heading is always visible
|
||||
opacity: 1 !important;
|
||||
visibility: visible !important;
|
||||
color: #222222 !important;
|
||||
display: block !important;
|
||||
position: relative !important;
|
||||
z-index: 10 !important;
|
||||
margin-top: 0 !important;
|
||||
}
|
||||
|
||||
p {
|
||||
color: #4b5563;
|
||||
line-height: 1.6;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Enhanced service section
|
||||
.tp-service {
|
||||
.tp-service__content {
|
||||
h2 {
|
||||
font-weight: 600;
|
||||
letter-spacing: -0.02em;
|
||||
}
|
||||
|
||||
p {
|
||||
color: #4b5563;
|
||||
line-height: 1.6;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Better gallery section
|
||||
.tp-gallery {
|
||||
.tp-gallery__content {
|
||||
h2 {
|
||||
font-weight: 600;
|
||||
letter-spacing: -0.02em;
|
||||
}
|
||||
|
||||
p {
|
||||
color: #e5e7eb;
|
||||
line-height: 1.6;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Responsive improvements
|
||||
@media (max-width: 768px) {
|
||||
.eye-friendly {
|
||||
h1, .text-xxl {
|
||||
font-size: 32px !important;
|
||||
line-height: 40px !important;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 24px !important;
|
||||
line-height: 32px !important;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 20px !important;
|
||||
line-height: 28px !important;
|
||||
}
|
||||
|
||||
p, .cur-lg {
|
||||
font-size: 14px !important;
|
||||
line-height: 22px !important;
|
||||
}
|
||||
|
||||
.capability-card {
|
||||
padding: 16px;
|
||||
}
|
||||
}
|
||||
}
|
||||
751
gnx-react/public/styles/components/_forms.scss
Normal file
751
gnx-react/public/styles/components/_forms.scss
Normal file
@@ -0,0 +1,751 @@
|
||||
/* ====
|
||||
--------- (3.02) forms styles start ---------
|
||||
==== */
|
||||
|
||||
@use "../abstracts/mixins" as *;
|
||||
|
||||
// subscribe form
|
||||
.subscribe-form {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
width: 100%;
|
||||
max-width: 360px;
|
||||
input {
|
||||
flex-grow: 1;
|
||||
padding: 22px 20px;
|
||||
background-color: var(--enterprise-blue);
|
||||
border-radius: 40px;
|
||||
color: var(--white);
|
||||
width: calc(100% - 70px);
|
||||
}
|
||||
|
||||
button {
|
||||
@include box(70px);
|
||||
background-color: var(--enterprise-blue);
|
||||
color: var(--primary-color);
|
||||
font-size: 24px;
|
||||
}
|
||||
}
|
||||
|
||||
// blog search form
|
||||
.search-form {
|
||||
width: 100%;
|
||||
position: relative;
|
||||
|
||||
input {
|
||||
width: 100%;
|
||||
border-bottom: 1px solid #22222250;
|
||||
padding: 16px 40px;
|
||||
color: var(--secondary-color);
|
||||
&::placeholder {
|
||||
color: var(--tertiary-color);
|
||||
}
|
||||
}
|
||||
|
||||
button {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 0px;
|
||||
transform: translateY(-50%);
|
||||
color: var(--tertiary-color);
|
||||
}
|
||||
}
|
||||
|
||||
// ENTERPRISE CONTACT FORM STYLES
|
||||
.enterprise-form {
|
||||
background: linear-gradient(135deg, var(--white) 0%, var(--secondary-50) 100%);
|
||||
border-radius: var(--radius-2xl);
|
||||
padding: var(--space-8);
|
||||
box-shadow:
|
||||
0 25px 50px -12px rgba(0, 0, 0, 0.15),
|
||||
0 0 0 1px rgba(255, 255, 255, 0.05),
|
||||
inset 0 1px 0 rgba(255, 255, 255, 0.1);
|
||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||
backdrop-filter: blur(10px);
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
|
||||
&::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: 4px;
|
||||
background: linear-gradient(90deg,
|
||||
var(--enterprise-blue) 0%,
|
||||
var(--enterprise-gold) 50%,
|
||||
var(--enterprise-blue) 100%);
|
||||
border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
|
||||
}
|
||||
|
||||
.form-section {
|
||||
background: rgba(255, 255, 255, 0.7);
|
||||
border-radius: var(--radius-xl);
|
||||
padding: var(--space-8);
|
||||
margin-bottom: var(--space-8);
|
||||
border: 1px solid rgba(0, 0, 0, 0.05);
|
||||
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
|
||||
transition: var(--transition-all);
|
||||
position: relative;
|
||||
|
||||
&:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
|
||||
.form-section-title {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: var(--space-3);
|
||||
font-size: var(--text-lg);
|
||||
font-weight: var(--font-weight-semibold);
|
||||
color: var(--secondary-800);
|
||||
margin-bottom: var(--space-6);
|
||||
padding-bottom: var(--space-3);
|
||||
border-bottom: 2px solid var(--secondary-200);
|
||||
position: relative;
|
||||
|
||||
i {
|
||||
color: var(--enterprise-blue);
|
||||
font-size: var(--text-xl);
|
||||
width: 24px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
&::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: -2px;
|
||||
left: 0;
|
||||
width: 60px;
|
||||
height: 2px;
|
||||
background: linear-gradient(90deg, var(--enterprise-blue), var(--enterprise-gold));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Enhanced input styling
|
||||
.input-single {
|
||||
position: relative;
|
||||
margin-bottom: var(--space-6);
|
||||
|
||||
label {
|
||||
display: block;
|
||||
font-size: var(--text-sm);
|
||||
font-weight: var(--font-weight-medium);
|
||||
color: var(--secondary-700);
|
||||
margin-bottom: var(--space-2);
|
||||
transition: var(--transition-colors);
|
||||
|
||||
&.required::after {
|
||||
content: ' *';
|
||||
color: var(--error);
|
||||
font-weight: var(--font-weight-bold);
|
||||
}
|
||||
}
|
||||
|
||||
input,
|
||||
textarea,
|
||||
select {
|
||||
width: 100%;
|
||||
padding: var(--space-4) var(--space-4);
|
||||
font-size: var(--text-base);
|
||||
color: var(--secondary-800);
|
||||
background: var(--white);
|
||||
border: 2px solid var(--secondary-200);
|
||||
border-radius: var(--radius-lg);
|
||||
transition: var(--transition-all);
|
||||
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
||||
position: relative;
|
||||
|
||||
&::placeholder {
|
||||
color: var(--secondary-400);
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
&:focus {
|
||||
outline: none;
|
||||
border-color: var(--enterprise-blue);
|
||||
box-shadow:
|
||||
0 0 0 3px rgba(59, 130, 246, 0.1),
|
||||
0 4px 6px -1px rgba(0, 0, 0, 0.1);
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
||||
&:hover:not(:focus) {
|
||||
border-color: var(--secondary-300);
|
||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
&.error {
|
||||
border-color: var(--error);
|
||||
box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
|
||||
}
|
||||
|
||||
&.success {
|
||||
border-color: var(--success);
|
||||
box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
|
||||
}
|
||||
}
|
||||
|
||||
textarea {
|
||||
min-height: 120px;
|
||||
resize: vertical;
|
||||
font-family: inherit;
|
||||
line-height: var(--leading-relaxed);
|
||||
}
|
||||
|
||||
select {
|
||||
cursor: pointer;
|
||||
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
|
||||
background-position: right var(--space-3) center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: 1.5em 1.5em;
|
||||
padding-right: var(--space-10);
|
||||
appearance: none;
|
||||
}
|
||||
|
||||
// Input validation states
|
||||
&.has-error {
|
||||
input, textarea, select {
|
||||
border-color: var(--error);
|
||||
box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
|
||||
}
|
||||
}
|
||||
|
||||
&.has-success {
|
||||
input, textarea, select {
|
||||
border-color: var(--success);
|
||||
box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
|
||||
}
|
||||
}
|
||||
|
||||
// Floating label effect
|
||||
&.floating-label {
|
||||
label {
|
||||
position: absolute;
|
||||
top: var(--space-4);
|
||||
left: var(--space-4);
|
||||
color: var(--secondary-500);
|
||||
transition: var(--transition-all);
|
||||
pointer-events: none;
|
||||
background: var(--white);
|
||||
padding: 0 var(--space-2);
|
||||
}
|
||||
|
||||
input:focus + label,
|
||||
input:not(:placeholder-shown) + label {
|
||||
top: -8px;
|
||||
left: var(--space-3);
|
||||
font-size: var(--text-xs);
|
||||
color: var(--enterprise-blue);
|
||||
font-weight: var(--font-weight-medium);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Enhanced checkbox styling
|
||||
.checkbox-group {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: var(--space-4);
|
||||
|
||||
.checkbox-single {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
gap: var(--space-3);
|
||||
padding: var(--space-4);
|
||||
background: rgba(255, 255, 255, 0.5);
|
||||
border-radius: var(--radius-lg);
|
||||
border: 1px solid var(--secondary-200);
|
||||
transition: var(--transition-all);
|
||||
|
||||
&:hover {
|
||||
background: rgba(255, 255, 255, 0.8);
|
||||
border-color: var(--secondary-300);
|
||||
}
|
||||
|
||||
input[type="checkbox"] {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
margin: 0;
|
||||
cursor: pointer;
|
||||
appearance: none;
|
||||
border: 2px solid var(--secondary-300);
|
||||
border-radius: var(--radius-base);
|
||||
background: var(--white);
|
||||
position: relative;
|
||||
transition: var(--transition-all);
|
||||
flex-shrink: 0;
|
||||
margin-top: 2px;
|
||||
|
||||
&:checked {
|
||||
background: var(--enterprise-blue);
|
||||
border-color: var(--enterprise-blue);
|
||||
}
|
||||
|
||||
&:checked::after {
|
||||
content: '✓';
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
color: var(--white);
|
||||
font-size: var(--text-sm);
|
||||
font-weight: var(--font-weight-bold);
|
||||
}
|
||||
|
||||
&:focus {
|
||||
outline: none;
|
||||
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
|
||||
}
|
||||
}
|
||||
|
||||
label {
|
||||
cursor: pointer;
|
||||
font-size: var(--text-sm);
|
||||
line-height: var(--leading-relaxed);
|
||||
color: var(--secondary-700);
|
||||
margin: 0;
|
||||
|
||||
a {
|
||||
color: var(--enterprise-blue);
|
||||
text-decoration: none;
|
||||
font-weight: var(--font-weight-medium);
|
||||
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Enhanced form status styling
|
||||
.form-status {
|
||||
padding: var(--space-4);
|
||||
border-radius: var(--radius-lg);
|
||||
margin: var(--space-6) 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: var(--space-3);
|
||||
font-weight: var(--font-weight-medium);
|
||||
|
||||
&.success {
|
||||
background: rgba(16, 185, 129, 0.1);
|
||||
border: 1px solid rgba(16, 185, 129, 0.2);
|
||||
color: var(--success);
|
||||
|
||||
i {
|
||||
color: var(--success);
|
||||
}
|
||||
}
|
||||
|
||||
&.error {
|
||||
background: rgba(239, 68, 68, 0.1);
|
||||
border: 1px solid rgba(239, 68, 68, 0.2);
|
||||
color: var(--error);
|
||||
|
||||
i {
|
||||
color: var(--error);
|
||||
}
|
||||
}
|
||||
|
||||
.status-content {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: var(--space-3);
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
width: 100%;
|
||||
|
||||
.error-details {
|
||||
margin-top: var(--space-2);
|
||||
padding-left: var(--space-8);
|
||||
|
||||
small {
|
||||
font-size: var(--text-sm);
|
||||
color: var(--secondary-600);
|
||||
line-height: var(--leading-relaxed);
|
||||
|
||||
a {
|
||||
color: var(--enterprise-blue);
|
||||
text-decoration: none;
|
||||
font-weight: var(--font-weight-medium);
|
||||
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Enhanced form actions
|
||||
.form-actions {
|
||||
text-align: center;
|
||||
padding-top: var(--space-6);
|
||||
border-top: 1px solid var(--secondary-200);
|
||||
|
||||
.enterprise-btn {
|
||||
background: linear-gradient(135deg, var(--enterprise-blue) 0%, var(--enterprise-dark-blue) 100%);
|
||||
border: none;
|
||||
color: var(--white);
|
||||
padding: var(--space-4) var(--space-8);
|
||||
font-size: var(--text-lg);
|
||||
font-weight: var(--font-weight-semibold);
|
||||
border-radius: var(--radius-xl);
|
||||
cursor: pointer;
|
||||
transition: var(--transition-all);
|
||||
box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.3);
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: var(--space-3);
|
||||
min-width: 280px;
|
||||
justify-content: center;
|
||||
|
||||
&::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: -100%;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
|
||||
transition: var(--transition-all);
|
||||
}
|
||||
|
||||
&:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 8px 25px 0 rgba(59, 130, 246, 0.4);
|
||||
|
||||
&::before {
|
||||
left: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
&:active {
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
&:disabled {
|
||||
opacity: 0.7;
|
||||
cursor: not-allowed;
|
||||
transform: none;
|
||||
|
||||
&:hover {
|
||||
transform: none;
|
||||
box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.3);
|
||||
}
|
||||
}
|
||||
|
||||
i {
|
||||
transition: var(--transition-transform);
|
||||
}
|
||||
|
||||
&:hover i {
|
||||
transform: translateX(4px);
|
||||
}
|
||||
|
||||
.fa-spinner {
|
||||
animation: spin 1s linear infinite;
|
||||
}
|
||||
}
|
||||
|
||||
.form-disclaimer {
|
||||
margin-top: var(--space-4);
|
||||
font-size: var(--text-sm);
|
||||
color: var(--secondary-500);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: var(--space-2);
|
||||
|
||||
i {
|
||||
color: var(--success);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Contact info cards enhancement
|
||||
.contact-info-card {
|
||||
background: linear-gradient(135deg, var(--white) 0%, var(--secondary-50) 100%);
|
||||
border-radius: var(--radius-xl);
|
||||
padding: var(--space-8);
|
||||
text-align: center;
|
||||
box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
|
||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||
transition: var(--transition-all);
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
|
||||
&::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: 3px;
|
||||
background: linear-gradient(90deg, var(--enterprise-blue), var(--enterprise-gold));
|
||||
}
|
||||
|
||||
&:hover {
|
||||
transform: translateY(-5px);
|
||||
box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
|
||||
.contact-info-icon {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
background: linear-gradient(135deg, var(--enterprise-blue), var(--enterprise-light-blue));
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin: 0 auto var(--space-6);
|
||||
box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
|
||||
|
||||
i {
|
||||
font-size: var(--text-2xl);
|
||||
color: var(--white);
|
||||
}
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: var(--text-xl);
|
||||
font-weight: var(--font-weight-bold);
|
||||
color: var(--secondary-800);
|
||||
margin-bottom: var(--space-2);
|
||||
}
|
||||
|
||||
p {
|
||||
color: var(--secondary-600);
|
||||
margin-bottom: var(--space-4);
|
||||
}
|
||||
|
||||
a {
|
||||
display: block;
|
||||
color: var(--enterprise-blue);
|
||||
text-decoration: none;
|
||||
font-weight: var(--font-weight-medium);
|
||||
margin-bottom: var(--space-1);
|
||||
transition: var(--transition-colors);
|
||||
|
||||
&:hover {
|
||||
color: var(--enterprise-dark-blue);
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
|
||||
.contact-hours {
|
||||
display: block;
|
||||
font-size: var(--text-sm);
|
||||
color: var(--success);
|
||||
font-weight: var(--font-weight-medium);
|
||||
margin-top: var(--space-3);
|
||||
padding: var(--space-2) var(--space-4);
|
||||
background: rgba(16, 185, 129, 0.1);
|
||||
border-radius: var(--radius-lg);
|
||||
border: 1px solid rgba(16, 185, 129, 0.2);
|
||||
}
|
||||
|
||||
address {
|
||||
font-style: normal;
|
||||
line-height: var(--leading-relaxed);
|
||||
color: var(--secondary-700);
|
||||
}
|
||||
}
|
||||
|
||||
// Animations
|
||||
@keyframes spin {
|
||||
from {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
to {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fadeInUp {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translateY(20px);
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
// Form animation classes
|
||||
.enterprise-form .form-section {
|
||||
animation: fadeInUp 0.6s ease-out;
|
||||
}
|
||||
|
||||
.enterprise-form .form-section:nth-child(2) {
|
||||
animation-delay: 0.1s;
|
||||
}
|
||||
|
||||
.enterprise-form .form-section:nth-child(3) {
|
||||
animation-delay: 0.2s;
|
||||
}
|
||||
|
||||
.enterprise-form .form-section:nth-child(4) {
|
||||
animation-delay: 0.3s;
|
||||
}
|
||||
|
||||
// Contact section header enhancements
|
||||
.contact-section-header {
|
||||
text-align: center;
|
||||
margin-bottom: var(--space-12);
|
||||
|
||||
.header-badge {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: var(--space-2);
|
||||
background: linear-gradient(135deg, var(--enterprise-blue), var(--enterprise-light-blue));
|
||||
color: var(--white) !important;
|
||||
padding: var(--space-3) var(--space-6);
|
||||
border-radius: var(--radius-full);
|
||||
font-size: var(--text-sm);
|
||||
font-weight: var(--font-weight-semibold);
|
||||
margin-bottom: var(--space-6);
|
||||
box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
|
||||
animation: pulse 2s infinite;
|
||||
|
||||
i {
|
||||
font-size: var(--text-base);
|
||||
color: var(--white) !important;
|
||||
}
|
||||
|
||||
span {
|
||||
color: var(--white) !important;
|
||||
}
|
||||
}
|
||||
|
||||
.contact-subtitle {
|
||||
font-size: var(--text-lg);
|
||||
color: var(--secondary-600);
|
||||
line-height: var(--leading-relaxed);
|
||||
margin-bottom: var(--space-8);
|
||||
max-width: 600px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.trust-indicators {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: var(--space-8);
|
||||
flex-wrap: wrap;
|
||||
margin-top: var(--space-8);
|
||||
|
||||
.trust-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: var(--space-2);
|
||||
background: rgba(255, 255, 255, 0.8);
|
||||
padding: var(--space-3) var(--space-4);
|
||||
border-radius: var(--radius-lg);
|
||||
border: 1px solid var(--secondary-200);
|
||||
font-size: var(--text-sm);
|
||||
font-weight: var(--font-weight-medium);
|
||||
color: var(--secondary-700);
|
||||
transition: var(--transition-all);
|
||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
|
||||
|
||||
&:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
||||
background: var(--white);
|
||||
}
|
||||
|
||||
i {
|
||||
color: var(--success);
|
||||
font-size: var(--text-base);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Enhanced sidebar styling
|
||||
.contact-sidebar-card {
|
||||
.sidebar-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: var(--space-6);
|
||||
|
||||
.enterprise-badge {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: var(--space-2);
|
||||
background: linear-gradient(135deg, var(--enterprise-gold), var(--enterprise-light-gold));
|
||||
color: var(--white);
|
||||
padding: var(--space-2) var(--space-4);
|
||||
border-radius: var(--radius-full);
|
||||
font-size: var(--text-xs);
|
||||
font-weight: var(--font-weight-bold);
|
||||
box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
|
||||
|
||||
i {
|
||||
font-size: var(--text-sm);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar-features {
|
||||
.feature-item {
|
||||
.feature-content {
|
||||
.feature-tags {
|
||||
display: flex;
|
||||
gap: var(--space-2);
|
||||
margin-top: var(--space-3);
|
||||
flex-wrap: wrap;
|
||||
|
||||
.tag {
|
||||
background: rgba(59, 130, 246, 0.1);
|
||||
color: var(--enterprise-blue);
|
||||
padding: var(--space-1) var(--space-3);
|
||||
border-radius: var(--radius-full);
|
||||
font-size: var(--text-xs);
|
||||
font-weight: var(--font-weight-medium);
|
||||
border: 1px solid rgba(59, 130, 246, 0.2);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Pulse animation for header badge
|
||||
@keyframes pulse {
|
||||
0%, 100% {
|
||||
transform: scale(1);
|
||||
box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
|
||||
}
|
||||
50% {
|
||||
transform: scale(1.05);
|
||||
box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
|
||||
}
|
||||
}
|
||||
|
||||
// Legacy contact form styles for backward compatibility
|
||||
.contact-form {
|
||||
.input-single {
|
||||
margin-bottom: 30px;
|
||||
&:nth-last-of-type(1) {
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* ====
|
||||
--------- (3.02) forms styles end ---------
|
||||
==== */
|
||||
967
gnx-react/public/styles/components/_hero-banner.scss
Normal file
967
gnx-react/public/styles/components/_hero-banner.scss
Normal file
@@ -0,0 +1,967 @@
|
||||
/* ====
|
||||
--------- Hero Banner - Complete Rewrite ---------
|
||||
==== */
|
||||
|
||||
.hero-banner {
|
||||
position: relative;
|
||||
min-height: 70vh;
|
||||
background: linear-gradient(135deg,
|
||||
#0f172a 0%,
|
||||
#1e293b 25%,
|
||||
#334155 50%,
|
||||
#1e293b 75%,
|
||||
#0f172a 100%);
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
color: var(--white) !important;
|
||||
font-family: var(--font-family-sans);
|
||||
padding: 4rem 0;
|
||||
|
||||
// Force all text to be white
|
||||
* {
|
||||
color: var(--white) !important;
|
||||
}
|
||||
|
||||
// Video-like Background Elements
|
||||
.hero-background {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
z-index: 1;
|
||||
overflow: hidden;
|
||||
|
||||
// Animated Code Lines
|
||||
.code-animation {
|
||||
position: absolute;
|
||||
top: 20%;
|
||||
left: 5%;
|
||||
font-family: 'IBM Plex Mono', monospace;
|
||||
font-size: 0.875rem;
|
||||
opacity: 0.3;
|
||||
animation: codeTyping 8s ease-in-out infinite;
|
||||
|
||||
.code-line {
|
||||
margin-bottom: 0.5rem;
|
||||
white-space: nowrap;
|
||||
|
||||
.code-keyword {
|
||||
color: #3b82f6;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.code-string {
|
||||
color: #10b981;
|
||||
}
|
||||
|
||||
.code-function {
|
||||
color: #f59e0b;
|
||||
}
|
||||
|
||||
&.line-1 { animation-delay: 0s; }
|
||||
&.line-2 { animation-delay: 1s; }
|
||||
&.line-3 { animation-delay: 2s; }
|
||||
&.line-4 { animation-delay: 3s; }
|
||||
}
|
||||
}
|
||||
|
||||
// Floating Tech Icons
|
||||
.floating-tech {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
|
||||
.tech-icon {
|
||||
position: absolute;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||
border-radius: 8px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: var(--white);
|
||||
font-size: 1.125rem;
|
||||
backdrop-filter: blur(10px);
|
||||
animation: techFloat 6s ease-in-out infinite;
|
||||
|
||||
&.icon-1 {
|
||||
top: 15%;
|
||||
left: 15%;
|
||||
animation-delay: 0s;
|
||||
}
|
||||
|
||||
&.icon-2 {
|
||||
top: 25%;
|
||||
right: 20%;
|
||||
animation-delay: 1s;
|
||||
}
|
||||
|
||||
&.icon-3 {
|
||||
top: 60%;
|
||||
left: 10%;
|
||||
animation-delay: 2s;
|
||||
}
|
||||
|
||||
&.icon-4 {
|
||||
top: 70%;
|
||||
right: 15%;
|
||||
animation-delay: 3s;
|
||||
}
|
||||
|
||||
&.icon-5 {
|
||||
top: 40%;
|
||||
left: 80%;
|
||||
animation-delay: 4s;
|
||||
}
|
||||
|
||||
&.icon-6 {
|
||||
top: 80%;
|
||||
right: 30%;
|
||||
animation-delay: 5s;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Dashboard Elements
|
||||
.dashboard-elements {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
|
||||
.dashboard-card {
|
||||
position: absolute;
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
border-radius: 12px;
|
||||
padding: 1rem;
|
||||
backdrop-filter: blur(15px);
|
||||
min-width: 160px;
|
||||
animation: dashboardFloat 8s ease-in-out infinite;
|
||||
|
||||
.card-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
margin-bottom: 0.75rem;
|
||||
font-size: 0.75rem;
|
||||
color: var(--white);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
|
||||
i {
|
||||
color: #3b82f6;
|
||||
}
|
||||
}
|
||||
|
||||
.card-content {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
font-size: 0.875rem;
|
||||
color: var(--white);
|
||||
|
||||
.status-indicator {
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
border-radius: 50%;
|
||||
|
||||
&.resolved {
|
||||
background: #10b981;
|
||||
box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
|
||||
}
|
||||
}
|
||||
|
||||
.metric-value {
|
||||
font-weight: 700;
|
||||
font-size: 1.125rem;
|
||||
color: var(--white);
|
||||
}
|
||||
}
|
||||
|
||||
&.card-1 {
|
||||
top: 10%;
|
||||
right: 5%;
|
||||
animation-delay: 0s;
|
||||
}
|
||||
|
||||
&.card-2 {
|
||||
top: 50%;
|
||||
left: 5%;
|
||||
animation-delay: 2s;
|
||||
}
|
||||
|
||||
&.card-3 {
|
||||
bottom: 20%;
|
||||
right: 10%;
|
||||
animation-delay: 4s;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Network Connection Lines
|
||||
.network-lines {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
|
||||
.connection-line {
|
||||
position: absolute;
|
||||
height: 1px;
|
||||
background: linear-gradient(90deg,
|
||||
transparent 0%,
|
||||
rgba(59, 130, 246, 0.3) 50%,
|
||||
transparent 100%);
|
||||
animation: dataFlow 4s ease-in-out infinite;
|
||||
|
||||
&.line-1 {
|
||||
top: 30%;
|
||||
left: 10%;
|
||||
width: 200px;
|
||||
animation-delay: 0s;
|
||||
}
|
||||
|
||||
&.line-2 {
|
||||
top: 60%;
|
||||
right: 15%;
|
||||
width: 150px;
|
||||
animation-delay: 1s;
|
||||
}
|
||||
|
||||
&.line-3 {
|
||||
top: 45%;
|
||||
left: 20%;
|
||||
width: 180px;
|
||||
animation-delay: 2s;
|
||||
}
|
||||
|
||||
&.line-4 {
|
||||
bottom: 30%;
|
||||
right: 20%;
|
||||
width: 120px;
|
||||
animation-delay: 3s;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Data Flow Particles
|
||||
.data-particles {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
|
||||
.particle {
|
||||
position: absolute;
|
||||
width: 4px;
|
||||
height: 4px;
|
||||
background: #3b82f6;
|
||||
border-radius: 50%;
|
||||
box-shadow: 0 0 10px rgba(59, 130, 246, 0.8);
|
||||
animation: particleMove 6s ease-in-out infinite;
|
||||
|
||||
&.particle-1 {
|
||||
top: 20%;
|
||||
left: 20%;
|
||||
animation-delay: 0s;
|
||||
}
|
||||
|
||||
&.particle-2 {
|
||||
top: 40%;
|
||||
right: 25%;
|
||||
animation-delay: 1s;
|
||||
}
|
||||
|
||||
&.particle-3 {
|
||||
top: 60%;
|
||||
left: 30%;
|
||||
animation-delay: 2s;
|
||||
}
|
||||
|
||||
&.particle-4 {
|
||||
top: 80%;
|
||||
right: 20%;
|
||||
animation-delay: 3s;
|
||||
}
|
||||
|
||||
&.particle-5 {
|
||||
top: 35%;
|
||||
left: 70%;
|
||||
animation-delay: 4s;
|
||||
}
|
||||
|
||||
&.particle-6 {
|
||||
top: 70%;
|
||||
right: 40%;
|
||||
animation-delay: 5s;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Video Overlay
|
||||
.video-overlay {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background: linear-gradient(135deg,
|
||||
rgba(15, 23, 42, 0.8) 0%,
|
||||
rgba(30, 41, 59, 0.7) 25%,
|
||||
rgba(51, 65, 85, 0.6) 50%,
|
||||
rgba(30, 41, 59, 0.7) 75%,
|
||||
rgba(15, 23, 42, 0.8) 100%);
|
||||
z-index: 1;
|
||||
}
|
||||
}
|
||||
|
||||
// Main Container
|
||||
.container {
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
// Hero Content
|
||||
.hero-content {
|
||||
padding: 1.5rem 0;
|
||||
|
||||
.hero-badge {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 0.375rem;
|
||||
background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
|
||||
border: 1px solid rgba(16, 185, 129, 0.4);
|
||||
color: var(--white) !important;
|
||||
padding: 0.5rem 1rem;
|
||||
border-radius: 50px;
|
||||
font-size: 0.75rem;
|
||||
font-weight: 600;
|
||||
margin-bottom: 1rem;
|
||||
backdrop-filter: blur(10px);
|
||||
transition: all 0.3s ease;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
|
||||
&:hover {
|
||||
background: rgba(255, 255, 255, 0.2);
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
.badge-icon {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
|
||||
i {
|
||||
font-size: 0.5rem;
|
||||
color: var(--white);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.hero-title {
|
||||
font-size: clamp(1.75rem, 4vw, 2.5rem);
|
||||
font-weight: 800;
|
||||
line-height: 1.2;
|
||||
margin-bottom: 1rem;
|
||||
color: var(--white) !important;
|
||||
font-family: var(--font-family-display);
|
||||
letter-spacing: -0.02em;
|
||||
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
.hero-description {
|
||||
font-size: 1rem;
|
||||
line-height: 1.6;
|
||||
color: var(--white) !important;
|
||||
margin-bottom: 2rem;
|
||||
max-width: 650px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
font-weight: 400;
|
||||
opacity: 0.95;
|
||||
}
|
||||
|
||||
// Hero Metrics
|
||||
.hero-metrics {
|
||||
display: flex;
|
||||
gap: 1rem;
|
||||
margin-bottom: 2rem;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
|
||||
.metric-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.75rem;
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
border-radius: 12px;
|
||||
padding: 1rem;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s ease;
|
||||
backdrop-filter: blur(10px);
|
||||
min-width: 160px;
|
||||
|
||||
&:hover,
|
||||
&.active {
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
border-color: rgba(59, 130, 246, 0.3);
|
||||
transform: translateY(-4px);
|
||||
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
.metric-icon {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
border-radius: 10px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-shrink: 0;
|
||||
|
||||
i {
|
||||
font-size: 1.125rem;
|
||||
color: var(--white);
|
||||
}
|
||||
}
|
||||
|
||||
.metric-content {
|
||||
.metric-value {
|
||||
font-size: 1.25rem;
|
||||
font-weight: 700;
|
||||
color: var(--white) !important;
|
||||
margin-bottom: 0.25rem;
|
||||
font-family: var(--font-family-display);
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.metric-label {
|
||||
font-size: 0.75rem;
|
||||
color: var(--white) !important;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Hero Actions
|
||||
.hero-actions {
|
||||
display: flex;
|
||||
gap: 0.75rem;
|
||||
margin-bottom: 2rem;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
|
||||
.btn-primary,
|
||||
.btn-secondary {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
padding: 0.875rem 1.5rem;
|
||||
border-radius: 12px;
|
||||
font-weight: 600;
|
||||
text-decoration: none;
|
||||
transition: all 0.3s ease;
|
||||
font-size: 0.875rem;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
|
||||
&::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: -100%;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: linear-gradient(90deg,
|
||||
transparent 0%,
|
||||
rgba(255, 255, 255, 0.2) 50%,
|
||||
transparent 100%);
|
||||
transition: left 0.6s ease;
|
||||
}
|
||||
|
||||
&:hover::before {
|
||||
left: 100%;
|
||||
}
|
||||
|
||||
i {
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
&:hover i {
|
||||
transform: translateX(4px);
|
||||
}
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
|
||||
color: var(--white) !important;
|
||||
border: none;
|
||||
|
||||
&:hover {
|
||||
background: linear-gradient(135deg, #2563eb 0%, #5b21b6 100%);
|
||||
transform: translateY(-3px);
|
||||
box-shadow: 0 20px 40px rgba(59, 130, 246, 0.4);
|
||||
color: var(--white) !important;
|
||||
}
|
||||
}
|
||||
|
||||
.btn-secondary {
|
||||
background: transparent;
|
||||
color: var(--white) !important;
|
||||
border: 2px solid rgba(255, 255, 255, 0.3);
|
||||
|
||||
&:hover {
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
border-color: rgba(255, 255, 255, 0.5);
|
||||
transform: translateY(-3px);
|
||||
color: var(--white) !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Trust Badges
|
||||
.trust-badges {
|
||||
display: flex;
|
||||
gap: 1rem;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
|
||||
.trust-badge {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.375rem;
|
||||
color: var(--white) !important;
|
||||
font-size: 0.7rem;
|
||||
padding: 0.375rem 0.75rem;
|
||||
background: rgba(255, 255, 255, 0.08);
|
||||
border-radius: 8px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.15);
|
||||
backdrop-filter: blur(10px);
|
||||
transition: all 0.3s ease;
|
||||
font-weight: 500;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.03em;
|
||||
|
||||
&:hover {
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
i {
|
||||
color: var(--white);
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// Social Links
|
||||
.social-links {
|
||||
position: absolute;
|
||||
right: 1rem;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.5rem;
|
||||
z-index: 3;
|
||||
|
||||
.social-link {
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
backdrop-filter: blur(10px);
|
||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||
border-radius: 8px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: var(--white);
|
||||
text-decoration: none;
|
||||
transition: all 0.3s ease;
|
||||
|
||||
&:hover {
|
||||
background: rgba(255, 255, 255, 0.2);
|
||||
transform: translateY(-2px);
|
||||
color: var(--white);
|
||||
}
|
||||
|
||||
i {
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Video-like Background Animations
|
||||
@keyframes codeTyping {
|
||||
0%, 100% {
|
||||
opacity: 0.3;
|
||||
transform: translateX(0);
|
||||
}
|
||||
50% {
|
||||
opacity: 0.6;
|
||||
transform: translateX(10px);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes techFloat {
|
||||
0%, 100% {
|
||||
transform: translateY(0px) rotate(0deg);
|
||||
}
|
||||
50% {
|
||||
transform: translateY(-20px) rotate(5deg);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes dashboardFloat {
|
||||
0%, 100% {
|
||||
transform: translateY(0px) scale(1);
|
||||
}
|
||||
50% {
|
||||
transform: translateY(-10px) scale(1.02);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes dataFlow {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: scaleX(0);
|
||||
}
|
||||
50% {
|
||||
opacity: 1;
|
||||
transform: scaleX(1);
|
||||
}
|
||||
100% {
|
||||
opacity: 0;
|
||||
transform: scaleX(0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes particleMove {
|
||||
0%, 100% {
|
||||
transform: translate(0, 0);
|
||||
opacity: 0.6;
|
||||
}
|
||||
25% {
|
||||
transform: translate(20px, -10px);
|
||||
opacity: 1;
|
||||
}
|
||||
50% {
|
||||
transform: translate(-10px, 15px);
|
||||
opacity: 0.8;
|
||||
}
|
||||
75% {
|
||||
transform: translate(15px, 5px);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
// Responsive Design
|
||||
@media (max-width: 768px) {
|
||||
.hero-banner {
|
||||
min-height: 65vh;
|
||||
padding: 2.5rem 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
.container {
|
||||
width: 100%;
|
||||
padding: 0 1.5rem;
|
||||
}
|
||||
|
||||
.hero-background {
|
||||
.code-animation {
|
||||
font-size: 0.7rem;
|
||||
opacity: 0.2;
|
||||
top: 15%;
|
||||
left: 3%;
|
||||
}
|
||||
|
||||
.tech-icon {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.dashboard-card {
|
||||
padding: 0.75rem;
|
||||
min-width: 140px;
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
.connection-line {
|
||||
height: 0.5px;
|
||||
}
|
||||
|
||||
.particle {
|
||||
width: 3px;
|
||||
height: 3px;
|
||||
}
|
||||
}
|
||||
|
||||
.hero-content {
|
||||
text-align: center;
|
||||
padding: 1rem 0;
|
||||
width: 100%;
|
||||
|
||||
.hero-title {
|
||||
font-size: 1.75rem;
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
|
||||
.hero-description {
|
||||
font-size: 0.9rem;
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.hero-metrics {
|
||||
justify-content: center;
|
||||
gap: 0.75rem;
|
||||
margin-bottom: 1.5rem;
|
||||
width: 100%;
|
||||
|
||||
.metric-item {
|
||||
min-width: 140px;
|
||||
padding: 0.75rem;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
||||
.metric-icon {
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
|
||||
i {
|
||||
font-size: 1rem;
|
||||
}
|
||||
}
|
||||
|
||||
.metric-content {
|
||||
text-align: left;
|
||||
|
||||
.metric-value {
|
||||
font-size: 1.125rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.hero-actions {
|
||||
justify-content: center;
|
||||
margin-bottom: 1.5rem;
|
||||
width: 100%;
|
||||
|
||||
.btn-primary,
|
||||
.btn-secondary {
|
||||
padding: 0.75rem 1.25rem;
|
||||
font-size: 0.8rem;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
.trust-badges {
|
||||
justify-content: center;
|
||||
gap: 0.75rem;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.social-links {
|
||||
position: static;
|
||||
transform: none;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
margin-top: 1rem;
|
||||
gap: 0.5rem;
|
||||
|
||||
.social-link {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
|
||||
i {
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 480px) {
|
||||
.hero-banner {
|
||||
min-height: 60vh;
|
||||
padding: 1.5rem 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
.container {
|
||||
width: 100%;
|
||||
padding: 0 1rem;
|
||||
}
|
||||
|
||||
.hero-background {
|
||||
.code-animation {
|
||||
font-size: 0.6rem;
|
||||
opacity: 0.1;
|
||||
top: 5%;
|
||||
left: 2%;
|
||||
}
|
||||
|
||||
.tech-icon {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
font-size: 0.7rem;
|
||||
}
|
||||
|
||||
.dashboard-card {
|
||||
padding: 0.4rem;
|
||||
min-width: 100px;
|
||||
font-size: 0.65rem;
|
||||
}
|
||||
|
||||
.connection-line {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.particle {
|
||||
width: 2px;
|
||||
height: 2px;
|
||||
}
|
||||
}
|
||||
|
||||
.hero-content {
|
||||
text-align: center;
|
||||
padding: 0.5rem 0;
|
||||
width: 100%;
|
||||
|
||||
.hero-badge {
|
||||
margin: 0 auto 0.75rem;
|
||||
font-size: 0.7rem;
|
||||
padding: 0.4rem 0.8rem;
|
||||
}
|
||||
|
||||
.hero-title {
|
||||
font-size: 1.4rem;
|
||||
margin-bottom: 0.75rem;
|
||||
line-height: 1.3;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.hero-description {
|
||||
font-size: 0.8rem;
|
||||
margin-bottom: 1.5rem;
|
||||
text-align: center;
|
||||
max-width: 100%;
|
||||
padding: 0 0.5rem;
|
||||
}
|
||||
|
||||
.hero-metrics {
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 0.75rem;
|
||||
margin-bottom: 1.5rem;
|
||||
width: 100%;
|
||||
|
||||
.metric-item {
|
||||
width: 100%;
|
||||
max-width: 280px;
|
||||
padding: 0.75rem;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
||||
.metric-icon {
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
|
||||
i {
|
||||
font-size: 1rem;
|
||||
}
|
||||
}
|
||||
|
||||
.metric-content {
|
||||
text-align: left;
|
||||
|
||||
.metric-value {
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
|
||||
.metric-label {
|
||||
font-size: 0.7rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.hero-actions {
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 0.75rem;
|
||||
margin-bottom: 1.5rem;
|
||||
width: 100%;
|
||||
|
||||
.btn-primary,
|
||||
.btn-secondary {
|
||||
width: 100%;
|
||||
max-width: 280px;
|
||||
justify-content: center;
|
||||
padding: 0.75rem 1.25rem;
|
||||
font-size: 0.8rem;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
.trust-badges {
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
width: 100%;
|
||||
|
||||
.trust-badge {
|
||||
width: 100%;
|
||||
max-width: 200px;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.social-links {
|
||||
position: static;
|
||||
transform: none;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
margin-top: 1.5rem;
|
||||
gap: 0.5rem;
|
||||
|
||||
.social-link {
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
|
||||
i {
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
824
gnx-react/public/styles/components/_modern-banner.scss
Normal file
824
gnx-react/public/styles/components/_modern-banner.scss
Normal file
@@ -0,0 +1,824 @@
|
||||
/* ====
|
||||
--------- Modern Banner Component Styles ---------
|
||||
==== */
|
||||
|
||||
.modern-banner {
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
background: linear-gradient(135deg,
|
||||
#0a0a0a 0%,
|
||||
#1a1a2e 25%,
|
||||
#16213e 50%,
|
||||
#0f3460 75%,
|
||||
#0a0a0a 100%);
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
color: var(--white);
|
||||
font-family: var(--font-family-sans);
|
||||
|
||||
// Animated Background
|
||||
.banner-background {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
z-index: 1;
|
||||
|
||||
// Floating Shapes
|
||||
.floating-shapes {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
|
||||
.shape {
|
||||
position: absolute;
|
||||
border-radius: 50%;
|
||||
background: linear-gradient(45deg,
|
||||
rgba(59, 130, 246, 0.1) 0%,
|
||||
rgba(99, 102, 241, 0.1) 100%);
|
||||
animation: float 6s ease-in-out infinite;
|
||||
|
||||
&.shape-1 {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
top: 20%;
|
||||
left: 10%;
|
||||
animation-delay: 0s;
|
||||
}
|
||||
|
||||
&.shape-2 {
|
||||
width: 120px;
|
||||
height: 120px;
|
||||
top: 60%;
|
||||
right: 15%;
|
||||
animation-delay: 2s;
|
||||
}
|
||||
|
||||
&.shape-3 {
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
bottom: 30%;
|
||||
left: 20%;
|
||||
animation-delay: 4s;
|
||||
}
|
||||
|
||||
&.shape-4 {
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
top: 40%;
|
||||
right: 30%;
|
||||
animation-delay: 1s;
|
||||
}
|
||||
|
||||
&.shape-5 {
|
||||
width: 70px;
|
||||
height: 70px;
|
||||
bottom: 20%;
|
||||
right: 10%;
|
||||
animation-delay: 3s;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Grid Overlay
|
||||
.grid-overlay {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background-image:
|
||||
linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
|
||||
linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
|
||||
background-size: 50px 50px;
|
||||
animation: gridMove 20s linear infinite;
|
||||
}
|
||||
|
||||
// Gradient Orbs
|
||||
.gradient-orb {
|
||||
position: absolute;
|
||||
border-radius: 50%;
|
||||
filter: blur(100px);
|
||||
opacity: 0.3;
|
||||
animation: orbFloat 8s ease-in-out infinite;
|
||||
|
||||
&.orb-1 {
|
||||
width: 300px;
|
||||
height: 300px;
|
||||
background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
|
||||
top: 10%;
|
||||
left: 10%;
|
||||
animation-delay: 0s;
|
||||
}
|
||||
|
||||
&.orb-2 {
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
background: radial-gradient(circle, #6366f1 0%, transparent 70%);
|
||||
top: 60%;
|
||||
right: 15%;
|
||||
animation-delay: 3s;
|
||||
}
|
||||
|
||||
&.orb-3 {
|
||||
width: 250px;
|
||||
height: 250px;
|
||||
background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
|
||||
bottom: 20%;
|
||||
left: 50%;
|
||||
animation-delay: 6s;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Main Content
|
||||
.container {
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.banner-content {
|
||||
padding: 2rem 0;
|
||||
|
||||
// Status Badge
|
||||
.status-badge {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
background: rgba(16, 185, 129, 0.1);
|
||||
border: 1px solid rgba(16, 185, 129, 0.3);
|
||||
color: #10b981;
|
||||
padding: 0.5rem 1rem;
|
||||
border-radius: 50px;
|
||||
font-size: 0.875rem;
|
||||
font-weight: 500;
|
||||
margin-bottom: 2rem;
|
||||
backdrop-filter: blur(10px);
|
||||
|
||||
.status-indicator {
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
background: #10b981;
|
||||
border-radius: 50%;
|
||||
animation: pulse 2s ease-in-out infinite;
|
||||
}
|
||||
}
|
||||
|
||||
// Main Title
|
||||
.banner-title {
|
||||
font-size: clamp(2.5rem, 5vw, 4rem);
|
||||
font-weight: 700;
|
||||
line-height: 1.1;
|
||||
margin-bottom: 1.5rem;
|
||||
background: linear-gradient(135deg,
|
||||
var(--white) 0%,
|
||||
rgba(255, 255, 255, 0.8) 100%);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
background-clip: text;
|
||||
font-family: var(--font-family-display);
|
||||
letter-spacing: -0.02em;
|
||||
}
|
||||
|
||||
// Description
|
||||
.banner-description {
|
||||
font-size: 1.125rem;
|
||||
line-height: 1.6;
|
||||
color: rgba(255, 255, 255, 0.8);
|
||||
margin-bottom: 3rem;
|
||||
max-width: 500px;
|
||||
}
|
||||
|
||||
// Interactive Stats
|
||||
.interactive-stats {
|
||||
margin-bottom: 3rem;
|
||||
|
||||
.stats-container {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
gap: 1rem;
|
||||
|
||||
.stat-card {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
border-radius: 16px;
|
||||
padding: 1.5rem;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s ease;
|
||||
backdrop-filter: blur(10px);
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
|
||||
&::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background: linear-gradient(135deg,
|
||||
rgba(59, 130, 246, 0.1) 0%,
|
||||
rgba(99, 102, 241, 0.1) 100%);
|
||||
opacity: 0;
|
||||
transition: opacity 0.3s ease;
|
||||
}
|
||||
|
||||
&:hover,
|
||||
&.active {
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
border-color: rgba(59, 130, 246, 0.3);
|
||||
transform: translateY(-4px);
|
||||
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
|
||||
|
||||
&::before {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.stat-indicator {
|
||||
opacity: 1;
|
||||
transform: scale(1);
|
||||
}
|
||||
}
|
||||
|
||||
.stat-icon {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
|
||||
border-radius: 12px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin-bottom: 1rem;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
|
||||
i {
|
||||
font-size: 1.25rem;
|
||||
color: var(--white);
|
||||
}
|
||||
}
|
||||
|
||||
.stat-content {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
|
||||
.stat-number {
|
||||
font-size: 1.5rem;
|
||||
font-weight: 700;
|
||||
color: var(--white);
|
||||
margin-bottom: 0.25rem;
|
||||
font-family: var(--font-family-display);
|
||||
}
|
||||
|
||||
.stat-label {
|
||||
font-size: 0.875rem;
|
||||
color: rgba(255, 255, 255, 0.7);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
}
|
||||
}
|
||||
|
||||
.stat-indicator {
|
||||
position: absolute;
|
||||
top: 1rem;
|
||||
right: 1rem;
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
background: #3b82f6;
|
||||
border-radius: 50%;
|
||||
opacity: 0;
|
||||
transform: scale(0);
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// CTA Buttons
|
||||
.banner-actions {
|
||||
display: flex;
|
||||
gap: 1rem;
|
||||
margin-bottom: 3rem;
|
||||
flex-wrap: wrap;
|
||||
|
||||
.btn-primary,
|
||||
.btn-secondary {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
padding: 1rem 2rem;
|
||||
border-radius: 12px;
|
||||
font-weight: 600;
|
||||
text-decoration: none;
|
||||
transition: all 0.3s ease;
|
||||
font-size: 1rem;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
|
||||
&::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: -100%;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: linear-gradient(90deg,
|
||||
transparent 0%,
|
||||
rgba(255, 255, 255, 0.2) 50%,
|
||||
transparent 100%);
|
||||
transition: left 0.6s ease;
|
||||
}
|
||||
|
||||
&:hover::before {
|
||||
left: 100%;
|
||||
}
|
||||
|
||||
i {
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
&:hover i {
|
||||
transform: translateX(4px);
|
||||
}
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
|
||||
color: var(--white);
|
||||
border: none;
|
||||
|
||||
&:hover {
|
||||
background: linear-gradient(135deg, #2563eb 0%, #5b21b6 100%);
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
|
||||
}
|
||||
}
|
||||
|
||||
.btn-secondary {
|
||||
background: transparent;
|
||||
color: var(--white);
|
||||
border: 2px solid rgba(255, 255, 255, 0.3);
|
||||
|
||||
&:hover {
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
border-color: rgba(255, 255, 255, 0.5);
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Trust Indicators
|
||||
.trust-indicators {
|
||||
display: flex;
|
||||
gap: 2rem;
|
||||
flex-wrap: wrap;
|
||||
|
||||
.trust-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
color: rgba(255, 255, 255, 0.7);
|
||||
font-size: 0.875rem;
|
||||
|
||||
i {
|
||||
color: #10b981;
|
||||
font-size: 1rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Banner Visual
|
||||
.banner-visual {
|
||||
position: relative;
|
||||
height: 600px;
|
||||
|
||||
.image-container {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border-radius: 24px;
|
||||
overflow: hidden;
|
||||
box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
|
||||
|
||||
.image-wrapper {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
|
||||
.main-image {
|
||||
object-fit: cover;
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
.image-overlay {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background: linear-gradient(135deg,
|
||||
rgba(59, 130, 246, 0.1) 0%,
|
||||
rgba(99, 102, 241, 0.1) 100%);
|
||||
}
|
||||
}
|
||||
|
||||
&:hover .main-image {
|
||||
transform: scale(1.05);
|
||||
}
|
||||
}
|
||||
|
||||
// Floating Cards
|
||||
.floating-cards {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
pointer-events: none;
|
||||
|
||||
.floating-card {
|
||||
position: absolute;
|
||||
background: rgba(255, 255, 255, 0.95);
|
||||
backdrop-filter: blur(20px);
|
||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||
border-radius: 16px;
|
||||
padding: 1rem;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.75rem;
|
||||
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
|
||||
animation: cardFloat 6s ease-in-out infinite;
|
||||
|
||||
.card-icon {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
|
||||
border-radius: 10px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
|
||||
i {
|
||||
font-size: 1rem;
|
||||
color: var(--white);
|
||||
}
|
||||
}
|
||||
|
||||
.card-content {
|
||||
.card-title {
|
||||
font-size: 0.75rem;
|
||||
color: #64748b;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
margin-bottom: 0.25rem;
|
||||
}
|
||||
|
||||
.card-value {
|
||||
font-size: 1.125rem;
|
||||
font-weight: 700;
|
||||
color: #1e293b;
|
||||
font-family: var(--font-family-display);
|
||||
}
|
||||
}
|
||||
|
||||
&.card-1 {
|
||||
top: 10%;
|
||||
right: -20px;
|
||||
animation-delay: 0s;
|
||||
}
|
||||
|
||||
&.card-2 {
|
||||
top: 50%;
|
||||
left: -20px;
|
||||
animation-delay: 2s;
|
||||
}
|
||||
|
||||
&.card-3 {
|
||||
bottom: 20%;
|
||||
right: -20px;
|
||||
animation-delay: 4s;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Tech Stack
|
||||
.tech-stack {
|
||||
position: absolute;
|
||||
bottom: 1rem;
|
||||
left: 1rem;
|
||||
display: flex;
|
||||
gap: 0.5rem;
|
||||
|
||||
.tech-item {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
backdrop-filter: blur(10px);
|
||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||
border-radius: 10px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
transition: all 0.3s ease;
|
||||
|
||||
&:hover {
|
||||
background: rgba(255, 255, 255, 0.2);
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
i {
|
||||
font-size: 1.25rem;
|
||||
color: var(--white);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Social Links
|
||||
.social-links {
|
||||
position: absolute;
|
||||
right: 2rem;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 1rem;
|
||||
z-index: 3;
|
||||
|
||||
.social-link {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
backdrop-filter: blur(10px);
|
||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||
border-radius: 12px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: var(--white);
|
||||
text-decoration: none;
|
||||
transition: all 0.3s ease;
|
||||
|
||||
&:hover {
|
||||
background: rgba(255, 255, 255, 0.2);
|
||||
transform: translateY(-2px);
|
||||
color: var(--white);
|
||||
}
|
||||
|
||||
i {
|
||||
font-size: 1.125rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Animations
|
||||
@keyframes float {
|
||||
0%, 100% {
|
||||
transform: translateY(0px) rotate(0deg);
|
||||
}
|
||||
50% {
|
||||
transform: translateY(-20px) rotate(180deg);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes gridMove {
|
||||
0% {
|
||||
transform: translate(0, 0);
|
||||
}
|
||||
100% {
|
||||
transform: translate(50px, 50px);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes orbFloat {
|
||||
0%, 100% {
|
||||
transform: translateY(0px) scale(1);
|
||||
}
|
||||
50% {
|
||||
transform: translateY(-30px) scale(1.1);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes pulse {
|
||||
0%, 100% {
|
||||
opacity: 1;
|
||||
transform: scale(1);
|
||||
}
|
||||
50% {
|
||||
opacity: 0.5;
|
||||
transform: scale(1.2);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes cardFloat {
|
||||
0%, 100% {
|
||||
transform: translateY(0px);
|
||||
}
|
||||
50% {
|
||||
transform: translateY(-10px);
|
||||
}
|
||||
}
|
||||
|
||||
// Responsive Design
|
||||
@media (max-width: 768px) {
|
||||
.modern-banner {
|
||||
min-height: auto;
|
||||
padding: 4rem 0;
|
||||
|
||||
.banner-content {
|
||||
text-align: center;
|
||||
padding: 1rem 0;
|
||||
|
||||
.banner-title {
|
||||
font-size: 2.5rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.banner-description {
|
||||
font-size: 1rem;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.interactive-stats {
|
||||
margin-bottom: 2rem;
|
||||
|
||||
.stats-container {
|
||||
grid-template-columns: 1fr;
|
||||
gap: 0.75rem;
|
||||
|
||||
.stat-card {
|
||||
padding: 1rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.banner-actions {
|
||||
justify-content: center;
|
||||
margin-bottom: 2rem;
|
||||
|
||||
.btn-primary,
|
||||
.btn-secondary {
|
||||
padding: 0.875rem 1.5rem;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
}
|
||||
|
||||
.trust-indicators {
|
||||
justify-content: center;
|
||||
gap: 1rem;
|
||||
|
||||
.trust-item {
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.banner-visual {
|
||||
height: 400px;
|
||||
margin-top: 2rem;
|
||||
|
||||
.floating-cards {
|
||||
.floating-card {
|
||||
padding: 0.75rem;
|
||||
|
||||
.card-icon {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
|
||||
i {
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
}
|
||||
|
||||
.card-content {
|
||||
.card-title {
|
||||
font-size: 0.7rem;
|
||||
}
|
||||
|
||||
.card-value {
|
||||
font-size: 1rem;
|
||||
}
|
||||
}
|
||||
|
||||
&.card-1 {
|
||||
top: 5%;
|
||||
right: -10px;
|
||||
}
|
||||
|
||||
&.card-2 {
|
||||
top: 60%;
|
||||
left: -10px;
|
||||
}
|
||||
|
||||
&.card-3 {
|
||||
bottom: 10%;
|
||||
right: -10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.tech-stack {
|
||||
bottom: 0.5rem;
|
||||
left: 0.5rem;
|
||||
|
||||
.tech-item {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
|
||||
i {
|
||||
font-size: 1rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.social-links {
|
||||
position: static;
|
||||
transform: none;
|
||||
flex-direction: row;
|
||||
justify-content: center;
|
||||
margin-top: 2rem;
|
||||
|
||||
.social-link {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
|
||||
i {
|
||||
font-size: 1rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 480px) {
|
||||
.modern-banner {
|
||||
padding: 3rem 0;
|
||||
|
||||
.banner-content {
|
||||
.banner-title {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.banner-description {
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.interactive-stats {
|
||||
.stats-container {
|
||||
.stat-card {
|
||||
padding: 0.75rem;
|
||||
|
||||
.stat-icon {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
margin-bottom: 0.75rem;
|
||||
|
||||
i {
|
||||
font-size: 1rem;
|
||||
}
|
||||
}
|
||||
|
||||
.stat-content {
|
||||
.stat-number {
|
||||
font-size: 1.25rem;
|
||||
}
|
||||
|
||||
.stat-label {
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.banner-actions {
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
|
||||
.btn-primary,
|
||||
.btn-secondary {
|
||||
width: 100%;
|
||||
max-width: 280px;
|
||||
justify-content: center;
|
||||
}
|
||||
}
|
||||
|
||||
.trust-indicators {
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 0.75rem;
|
||||
}
|
||||
}
|
||||
|
||||
.banner-visual {
|
||||
height: 300px;
|
||||
}
|
||||
}
|
||||
}
|
||||
182
gnx-react/public/styles/components/_preloader.scss
Normal file
182
gnx-react/public/styles/components/_preloader.scss
Normal file
@@ -0,0 +1,182 @@
|
||||
/* ====
|
||||
--------- (3.03) preloader styles start ---------
|
||||
==== */
|
||||
|
||||
.ctn-preloader {
|
||||
align-items: center;
|
||||
cursor: none;
|
||||
display: flex;
|
||||
height: 100%;
|
||||
justify-content: center;
|
||||
position: fixed;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
z-index: 99999;
|
||||
}
|
||||
|
||||
.ctn-preloader .animation-preloader {
|
||||
position: absolute;
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
.ctn-preloader .animation-preloader .spinner {
|
||||
animation: spinner 1s infinite linear;
|
||||
border-radius: 50%;
|
||||
border: 4px solid #ffffff50;
|
||||
border-top-color: var(--enterprise-blue);
|
||||
height: 9em;
|
||||
margin: 0 auto 3.5em auto;
|
||||
width: 9em;
|
||||
}
|
||||
|
||||
.ctn-preloader .animation-preloader .txt-loading {
|
||||
text-align: center;
|
||||
user-select: none;
|
||||
span {
|
||||
font-size: 30px;
|
||||
letter-spacing: 2px;
|
||||
font-weight: 400;
|
||||
}
|
||||
}
|
||||
|
||||
.ctn-preloader .animation-preloader .txt-loading .letters-loading:before {
|
||||
animation: letters-loading 4s infinite;
|
||||
color: var(--enterprise-blue);
|
||||
content: attr(data-text-preloader);
|
||||
left: 0;
|
||||
opacity: 0;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
transform: rotateY(-90deg);
|
||||
}
|
||||
|
||||
.ctn-preloader .animation-preloader .txt-loading .letters-loading {
|
||||
color: #ffffff50;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.ctn-preloader
|
||||
.animation-preloader
|
||||
.txt-loading
|
||||
.letters-loading:nth-child(2):before {
|
||||
animation-delay: 0.2s;
|
||||
}
|
||||
|
||||
.ctn-preloader
|
||||
.animation-preloader
|
||||
.txt-loading
|
||||
.letters-loading:nth-child(3):before {
|
||||
animation-delay: 0.4s;
|
||||
}
|
||||
|
||||
.ctn-preloader
|
||||
.animation-preloader
|
||||
.txt-loading
|
||||
.letters-loading:nth-child(4):before {
|
||||
animation-delay: 0.6s;
|
||||
}
|
||||
|
||||
.ctn-preloader
|
||||
.animation-preloader
|
||||
.txt-loading
|
||||
.letters-loading:nth-child(5):before {
|
||||
animation-delay: 0.8s;
|
||||
}
|
||||
|
||||
.ctn-preloader
|
||||
.animation-preloader
|
||||
.txt-loading
|
||||
.letters-loading:nth-child(6):before {
|
||||
animation-delay: 1s;
|
||||
}
|
||||
|
||||
.ctn-preloader
|
||||
.animation-preloader
|
||||
.txt-loading
|
||||
.letters-loading:nth-child(7):before {
|
||||
animation-delay: 1.2s;
|
||||
}
|
||||
|
||||
.ctn-preloader .loader-section {
|
||||
background-color: #030015;
|
||||
height: 100%;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
width: calc(50% + 1px);
|
||||
}
|
||||
|
||||
.ctn-preloader .loader-section.section-left {
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.ctn-preloader .loader-section.section-right {
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.loaded .animation-preloader {
|
||||
opacity: 0;
|
||||
transition: 0.3s ease-out;
|
||||
}
|
||||
|
||||
.loaded .loader-section.section-left {
|
||||
background-color: var(--enterprise-blue) !important;
|
||||
transform: translateX(-101%);
|
||||
transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
|
||||
}
|
||||
|
||||
.loaded .loader-section.section-right {
|
||||
transform: translateX(101%);
|
||||
transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
|
||||
}
|
||||
|
||||
@keyframes spinner {
|
||||
to {
|
||||
transform: rotateZ(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes letters-loading {
|
||||
0%,
|
||||
75%,
|
||||
100% {
|
||||
opacity: 0;
|
||||
transform: rotateY(-90deg);
|
||||
}
|
||||
|
||||
25%,
|
||||
50% {
|
||||
opacity: 1;
|
||||
transform: rotateY(0deg);
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 767px) {
|
||||
.ctn-preloader .animation-preloader .spinner {
|
||||
height: 8em;
|
||||
width: 8em;
|
||||
}
|
||||
|
||||
.ctn-preloader .animation-preloader .txt-loading {
|
||||
span {
|
||||
font-size: 24px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 500px) {
|
||||
.ctn-preloader .animation-preloader .spinner {
|
||||
height: 7em;
|
||||
width: 7em;
|
||||
}
|
||||
|
||||
.ctn-preloader .animation-preloader .txt-loading {
|
||||
span {
|
||||
font-size: 20px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* ====
|
||||
--------- (3.03) preloader styles end ---------
|
||||
==== */
|
||||
1586
gnx-react/public/styles/layout/_banner.scss
Normal file
1586
gnx-react/public/styles/layout/_banner.scss
Normal file
File diff suppressed because it is too large
Load Diff
581
gnx-react/public/styles/layout/_footer.scss
Normal file
581
gnx-react/public/styles/layout/_footer.scss
Normal file
@@ -0,0 +1,581 @@
|
||||
/* ====
|
||||
--------- (4.03) footer styles start ---------
|
||||
==== */
|
||||
|
||||
@use "../abstracts/mixins" as *;
|
||||
|
||||
.footer {
|
||||
background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
||||
overflow-x: clip;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
padding: 40px 0;
|
||||
// Footer Logo Section
|
||||
.footer-logo-section {
|
||||
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
||||
margin-bottom: 40px;
|
||||
position: relative;
|
||||
|
||||
&::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
width: 100px;
|
||||
height: 2px;
|
||||
background: linear-gradient(90deg, #4a9eff, #00d4ff);
|
||||
border-radius: 1px;
|
||||
}
|
||||
|
||||
.enterprise-logo-container {
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.enterprise-security-badges {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 40px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.security-badges-left,
|
||||
.security-badges-right {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 15px;
|
||||
min-width: 140px;
|
||||
}
|
||||
|
||||
.logo-center {
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.footer-logo {
|
||||
display: inline-block;
|
||||
transition: all 0.3s ease;
|
||||
|
||||
&:hover {
|
||||
transform: translateY(-2px);
|
||||
filter: brightness(1.1);
|
||||
}
|
||||
|
||||
img {
|
||||
filter: brightness(0) invert(1); // Make logo white for dark footer
|
||||
transition: all 0.3s ease;
|
||||
max-height: 120px;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
&:hover img {
|
||||
filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(200deg); // Blue tint on hover
|
||||
}
|
||||
}
|
||||
|
||||
.security-badge {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
padding: 10px 16px;
|
||||
background: linear-gradient(135deg, rgba(74, 158, 255, 0.15), rgba(74, 158, 255, 0.05));
|
||||
border: 1px solid rgba(74, 158, 255, 0.4);
|
||||
border-radius: 12px;
|
||||
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
|
||||
backdrop-filter: blur(15px);
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
box-shadow: 0 2px 8px rgba(74, 158, 255, 0.1);
|
||||
|
||||
// Shine effect
|
||||
&::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: -100%;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
|
||||
transition: left 0.6s ease;
|
||||
}
|
||||
|
||||
// Glow animation
|
||||
&::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: -2px;
|
||||
left: -2px;
|
||||
right: -2px;
|
||||
bottom: -2px;
|
||||
background: linear-gradient(45deg, #4a9eff, #00d4ff, #4a9eff);
|
||||
border-radius: 14px;
|
||||
z-index: -1;
|
||||
opacity: 0;
|
||||
transition: opacity 0.3s ease;
|
||||
animation: pulse-glow 3s ease-in-out infinite;
|
||||
}
|
||||
|
||||
i {
|
||||
color: #4a9eff;
|
||||
font-size: 14px;
|
||||
transition: all 0.3s ease;
|
||||
filter: drop-shadow(0 0 4px rgba(74, 158, 255, 0.3));
|
||||
}
|
||||
|
||||
span {
|
||||
color: #ffffff;
|
||||
font-weight: 500;
|
||||
font-size: 12px;
|
||||
letter-spacing: 0.3px;
|
||||
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
&:hover {
|
||||
background: linear-gradient(135deg, rgba(74, 158, 255, 0.25), rgba(74, 158, 255, 0.1));
|
||||
border-color: rgba(74, 158, 255, 0.6);
|
||||
transform: translateY(-2px) scale(1.02);
|
||||
box-shadow: 0 8px 25px rgba(74, 158, 255, 0.3);
|
||||
|
||||
&::before {
|
||||
left: 100%;
|
||||
}
|
||||
|
||||
&::after {
|
||||
opacity: 0.3;
|
||||
}
|
||||
|
||||
i {
|
||||
color: #00d4ff;
|
||||
transform: scale(1.1);
|
||||
filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.5));
|
||||
}
|
||||
|
||||
span {
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 8px rgba(74, 158, 255, 0.5);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Pulse glow animation
|
||||
@keyframes pulse-glow {
|
||||
0%, 100% {
|
||||
opacity: 0;
|
||||
transform: scale(1);
|
||||
}
|
||||
50% {
|
||||
opacity: 0.2;
|
||||
transform: scale(1.02);
|
||||
}
|
||||
}
|
||||
|
||||
.btn-anim {
|
||||
margin-left: auto;
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
|
||||
// Removed foot-group and anime styles as they were related to the image section
|
||||
|
||||
// Enterprise footer sections
|
||||
.footer-section {
|
||||
margin-bottom: 30px;
|
||||
|
||||
h6 {
|
||||
color: #ffffff;
|
||||
font-weight: 600;
|
||||
font-size: 16px;
|
||||
letter-spacing: 0.5px;
|
||||
text-transform: uppercase;
|
||||
margin-bottom: 20px;
|
||||
position: relative;
|
||||
&::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: -8px;
|
||||
left: 0;
|
||||
width: 30px;
|
||||
height: 2px;
|
||||
background: linear-gradient(90deg, #4a9eff, #00d4ff);
|
||||
border-radius: 1px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// CTA Section
|
||||
.footer-cta-section {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: flex-end;
|
||||
height: 100%;
|
||||
|
||||
.cta-content {
|
||||
text-align: right;
|
||||
|
||||
h6 {
|
||||
color: #ffffff;
|
||||
font-weight: 600;
|
||||
font-size: 16px;
|
||||
letter-spacing: 0.5px;
|
||||
text-transform: uppercase;
|
||||
margin-bottom: 24px;
|
||||
position: relative;
|
||||
&::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: -8px;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
width: 30px;
|
||||
height: 2px;
|
||||
background: linear-gradient(90deg, #4a9eff, #00d4ff);
|
||||
border-radius: 1px;
|
||||
}
|
||||
}
|
||||
|
||||
p {
|
||||
color: #e0e0e0;
|
||||
font-size: 14px;
|
||||
line-height: 1.5;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.footer-links {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
|
||||
li {
|
||||
margin-bottom: 12px;
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
a {
|
||||
color: #e0e0e0;
|
||||
font-weight: 400;
|
||||
font-family: var(--mont);
|
||||
font-size: 14px;
|
||||
transition: all 0.3s ease;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
|
||||
&:hover {
|
||||
color: #4a9eff;
|
||||
transform: translateX(4px);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Legacy ul styles for contact section
|
||||
ul {
|
||||
li {
|
||||
margin-bottom: 20px;
|
||||
&:nth-last-of-type(1) {
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
}
|
||||
a {
|
||||
color: #e0e0e0;
|
||||
font-weight: 500;
|
||||
font-family: var(--mont);
|
||||
font-size: 13px;
|
||||
transition: all 0.3s ease;
|
||||
&:hover {
|
||||
color: #4a9eff;
|
||||
transform: translateX(4px);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.footer__inner {
|
||||
padding-bottom: 60px;
|
||||
}
|
||||
|
||||
.footer__inner-single {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 20px;
|
||||
.thumb {
|
||||
@include box(48px);
|
||||
border-radius: 12px;
|
||||
background: linear-gradient(135deg, rgba(74, 158, 255, 0.2) 0%, rgba(0, 212, 255, 0.1) 100%);
|
||||
border: 1px solid rgba(74, 158, 255, 0.3);
|
||||
transition: all 0.3s ease;
|
||||
&:hover {
|
||||
background: linear-gradient(135deg, rgba(74, 158, 255, 0.3) 0%, rgba(0, 212, 255, 0.2) 100%);
|
||||
border-color: rgba(74, 158, 255, 0.5);
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
}
|
||||
|
||||
a {
|
||||
&:hover {
|
||||
color: var(--quaternary-color);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.footer-copyright {
|
||||
padding: 20px 0px;
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.2);
|
||||
|
||||
a {
|
||||
&:hover {
|
||||
color: #4a9eff;
|
||||
}
|
||||
}
|
||||
|
||||
.social {
|
||||
a {
|
||||
background: linear-gradient(135deg, rgba(74, 158, 255, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
|
||||
border: 1px solid rgba(74, 158, 255, 0.2);
|
||||
border-radius: 10px;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: #e0e0e0;
|
||||
font-size: 16px;
|
||||
margin: 0 6px;
|
||||
transition: all 0.3s ease;
|
||||
&:hover {
|
||||
color: #ffffff;
|
||||
background: linear-gradient(135deg, rgba(74, 158, 255, 0.3) 0%, rgba(0, 212, 255, 0.2) 100%);
|
||||
border-color: rgba(74, 158, 255, 0.5);
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 6px 20px rgba(74, 158, 255, 0.3);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Removed arrow styles as image is no longer used
|
||||
|
||||
// Enterprise-specific enhancements
|
||||
.title-anim {
|
||||
background: linear-gradient(135deg, #ffffff 0%, #4a9eff 50%, #00d4ff 100%);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
background-clip: text;
|
||||
font-weight: 700;
|
||||
letter-spacing: -0.02em;
|
||||
}
|
||||
|
||||
.text-xl {
|
||||
color: #e0e0e0;
|
||||
line-height: 1.6;
|
||||
font-weight: 400;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.max-width-800 {
|
||||
max-width: 800px;
|
||||
}
|
||||
|
||||
.btn-anim {
|
||||
background: #1a1a1a;
|
||||
border: 2px solid #4a9eff;
|
||||
color: #ffffff;
|
||||
font-weight: 500;
|
||||
padding: 10px 20px;
|
||||
border-radius: 25px;
|
||||
font-size: 12px;
|
||||
letter-spacing: 0.3px;
|
||||
text-transform: uppercase;
|
||||
transition: all 0.3s ease;
|
||||
width: auto;
|
||||
height: auto;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
text-decoration: none;
|
||||
|
||||
&:hover {
|
||||
background: #4a9eff;
|
||||
border-color: #4a9eff;
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 4px 12px rgba(74, 158, 255, 0.3);
|
||||
}
|
||||
|
||||
i {
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
&:hover i {
|
||||
transform: translateX(2px);
|
||||
}
|
||||
|
||||
&:before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: -100%;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: linear-gradient(90deg, transparent, rgba(74, 158, 255, 0.1), transparent);
|
||||
transition: left 0.5s ease;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
background: #4a9eff;
|
||||
border-color: #4a9eff;
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 8px 25px rgba(74, 158, 255, 0.4);
|
||||
|
||||
&:before {
|
||||
left: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
i {
|
||||
margin-left: 8px;
|
||||
font-size: 11px;
|
||||
}
|
||||
}
|
||||
|
||||
// Enhanced contact section styling
|
||||
.footer__inner-single {
|
||||
.content {
|
||||
h5 {
|
||||
color: #ffffff;
|
||||
font-weight: 600;
|
||||
font-size: 16px;
|
||||
letter-spacing: 0.5px;
|
||||
}
|
||||
p {
|
||||
color: #b0b0b0;
|
||||
font-size: 13px;
|
||||
line-height: 1.5;
|
||||
a {
|
||||
color: #b0b0b0;
|
||||
transition: color 0.3s ease;
|
||||
&:hover {
|
||||
color: #4a9eff;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Copyright section enhancements
|
||||
.footer__copyright-text {
|
||||
p {
|
||||
color: #888888;
|
||||
font-size: 14px;
|
||||
a {
|
||||
color: #4a9eff;
|
||||
font-weight: 600;
|
||||
&:hover {
|
||||
color: #00d4ff;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// Responsive styles for security badges
|
||||
@media (max-width: 991.98px) {
|
||||
.footer-logo-section {
|
||||
.enterprise-security-badges {
|
||||
gap: 30px;
|
||||
}
|
||||
|
||||
.footer-logo img {
|
||||
max-height: 100px;
|
||||
}
|
||||
|
||||
.security-badges-left,
|
||||
.security-badges-right {
|
||||
min-width: 120px;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.security-badge {
|
||||
padding: 8px 12px;
|
||||
|
||||
i {
|
||||
font-size: 12px;
|
||||
width: 14px;
|
||||
}
|
||||
|
||||
span {
|
||||
font-size: 11px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 767.98px) {
|
||||
.footer-logo-section {
|
||||
.enterprise-security-badges {
|
||||
flex-direction: column;
|
||||
gap: 20px;
|
||||
}
|
||||
|
||||
.footer-logo img {
|
||||
max-height: 80px;
|
||||
}
|
||||
|
||||
.security-badges-left,
|
||||
.security-badges-right {
|
||||
flex-direction: row;
|
||||
justify-content: center;
|
||||
gap: 15px;
|
||||
min-width: auto;
|
||||
}
|
||||
|
||||
.security-badge {
|
||||
padding: 7px 10px;
|
||||
|
||||
i {
|
||||
font-size: 11px;
|
||||
width: 12px;
|
||||
}
|
||||
|
||||
span {
|
||||
font-size: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 575.98px) {
|
||||
.footer-logo-section {
|
||||
.footer-logo img {
|
||||
max-height: 60px;
|
||||
}
|
||||
|
||||
.security-badges-left,
|
||||
.security-badges-right {
|
||||
flex-direction: column;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.security-badge {
|
||||
padding: 6px 8px;
|
||||
|
||||
i {
|
||||
font-size: 10px;
|
||||
width: 10px;
|
||||
}
|
||||
|
||||
span {
|
||||
font-size: 9px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* ====
|
||||
--------- (4.03) footer styles end ---------
|
||||
==== */
|
||||
1210
gnx-react/public/styles/layout/_header.scss
Normal file
1210
gnx-react/public/styles/layout/_header.scss
Normal file
File diff suppressed because it is too large
Load Diff
103
gnx-react/public/styles/main.scss
Normal file
103
gnx-react/public/styles/main.scss
Normal file
@@ -0,0 +1,103 @@
|
||||
// @use statements for files that export Sass features (mixins, variables, functions)
|
||||
@use "./abstracts/variables" as *;
|
||||
@use "./abstracts/mixins" as *;
|
||||
|
||||
// base styles (CSS-only files) - using @use for modern Sass
|
||||
@use "./base/reset";
|
||||
@use "./base/typography";
|
||||
@use "./base/global";
|
||||
|
||||
// component styles (CSS-only files) - using @use for modern Sass
|
||||
@use "./components/buttons";
|
||||
@use "./components/forms";
|
||||
@use "./components/preloader";
|
||||
@use "./components/eye-friendly";
|
||||
@use "./components/cookie-consent";
|
||||
@use "./components/modern-banner";
|
||||
@use "./components/banner-fixes";
|
||||
@use "./components/hero-banner";
|
||||
|
||||
// layout styles (CSS-only files) - using @use for modern Sass
|
||||
@use "./layout/header";
|
||||
@use "./layout/banner";
|
||||
@use "./layout/footer";
|
||||
|
||||
// section styles (CSS-only files) - using @use for modern Sass
|
||||
@use "./sections/all-sections";
|
||||
@use "./sections/enterprise-service";
|
||||
|
||||
// page-specific styles
|
||||
@use "./pages/about-enterprise";
|
||||
|
||||
// responsive styles (CSS-only files) - using @use for modern Sass
|
||||
@use "./responsive";
|
||||
|
||||
// modern CSS framework (Bootstrap replacement)
|
||||
@use "./utilities/modern-framework";
|
||||
|
||||
/* ==============
|
||||
========= css table of contents =========
|
||||
|
||||
* template name: Itify
|
||||
* version: 1.0
|
||||
* description: Software Development & IT Solutions
|
||||
* author: Pixelaxis
|
||||
* author-url: https://themeforest.net/user/pixelaxis
|
||||
|
||||
01. abstracts
|
||||
1.01 --> mixins
|
||||
1.02 --> variables
|
||||
|
||||
02. base
|
||||
2.01 --> reset
|
||||
2.02 --> typography
|
||||
2.03 --> global
|
||||
|
||||
03. components
|
||||
3.01 --> buttons
|
||||
3.02 --> forms
|
||||
3.03 --> preloader
|
||||
|
||||
04. layout
|
||||
4.01 --> header
|
||||
4.01.01 --> header common
|
||||
4.01.02 --> light header
|
||||
4.01.03 --> offcanvas nav
|
||||
|
||||
4.02 --> banner
|
||||
4.02.01 --> home banner styles start
|
||||
4.02.02 --> about banner styles start
|
||||
4.02.03 --> service banner styles start
|
||||
4.02.04 --> career banner styles start
|
||||
|
||||
4.03 --> footer
|
||||
|
||||
05. sections
|
||||
5.01 --> overview section styles start
|
||||
5.02 --> story section styles start
|
||||
5.04 --> latest post section styles start
|
||||
5.05 --> sponsor section styles start
|
||||
5.06 --> case study section styles start
|
||||
5.07 --> gallery section styles start
|
||||
5.08 --> service section styles start
|
||||
5.09 --> transform section styles start
|
||||
5.10 --> process section styles start
|
||||
5.11 --> case study main section styles start
|
||||
5.12 --> open position section styles start
|
||||
5.13 --> thrive section styles start
|
||||
5.14 --> masonry gallery styles start
|
||||
5.15 --> job details styles start
|
||||
5.16 --> blog main styles start
|
||||
5.17 --> blog details styles start
|
||||
|
||||
06. responsive
|
||||
|
||||
==================================
|
||||
============== */
|
||||
|
||||
// External libraries - modern CSS only
|
||||
// font awesome 6
|
||||
@import "@/public/icons/font-awesome/css/all.min.css";
|
||||
|
||||
// material icons
|
||||
@import "@/public/icons/material-icons/css/material-icons.css";
|
||||
766
gnx-react/public/styles/pages/_about-enterprise.scss
Normal file
766
gnx-react/public/styles/pages/_about-enterprise.scss
Normal file
@@ -0,0 +1,766 @@
|
||||
/* ====
|
||||
--------- Enterprise About Page Styles ---------
|
||||
==== */
|
||||
|
||||
// Enterprise About Page Layout
|
||||
.enterprise-about-page {
|
||||
font-family: var(--font-family-sans);
|
||||
line-height: var(--leading-normal);
|
||||
color: var(--secondary-700);
|
||||
background: var(--white);
|
||||
|
||||
// Compact spacing
|
||||
.container {
|
||||
max-width: 1200px;
|
||||
padding-left: 1.5rem;
|
||||
padding-right: 1.5rem;
|
||||
}
|
||||
|
||||
// Reduced section padding
|
||||
section {
|
||||
padding: 4rem 0;
|
||||
|
||||
@media (max-width: 768px) {
|
||||
padding: 3rem 0;
|
||||
}
|
||||
|
||||
@media (max-width: 480px) {
|
||||
padding: 2.5rem 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Enterprise About Banner
|
||||
.about-banner {
|
||||
background: linear-gradient(135deg,
|
||||
var(--secondary-900) 0%,
|
||||
var(--primary-800) 50%,
|
||||
var(--secondary-800) 100%);
|
||||
color: var(--white);
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
padding: 4rem 0;
|
||||
|
||||
// Compact padding
|
||||
@media (max-width: 768px) {
|
||||
padding: 3rem 0;
|
||||
}
|
||||
|
||||
@media (max-width: 480px) {
|
||||
padding: 2.5rem 0;
|
||||
}
|
||||
|
||||
// Enterprise background elements
|
||||
&::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background:
|
||||
radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 60%),
|
||||
radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.08) 0%, transparent 60%),
|
||||
radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.container {
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
&__content {
|
||||
.enterprise-badge {
|
||||
display: inline-block;
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
backdrop-filter: blur(10px);
|
||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||
color: var(--white);
|
||||
padding: 0.5rem 1.25rem;
|
||||
border-radius: 50px;
|
||||
font-size: 0.875rem;
|
||||
font-weight: 500;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
margin-bottom: 1.5rem;
|
||||
font-family: var(--font-family-sans);
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: clamp(2rem, 4vw, 2.5rem);
|
||||
font-weight: 700;
|
||||
line-height: 1.2;
|
||||
margin-bottom: 1.5rem;
|
||||
color: var(--white);
|
||||
font-family: var(--font-family-display);
|
||||
letter-spacing: -0.02em;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 1.125rem;
|
||||
line-height: 1.6;
|
||||
color: rgba(255, 255, 255, 0.9);
|
||||
max-width: 600px;
|
||||
margin-bottom: 2rem;
|
||||
font-family: var(--font-family-sans);
|
||||
}
|
||||
|
||||
.enterprise-stats {
|
||||
margin-bottom: 2.5rem;
|
||||
|
||||
.row {
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.stat-item {
|
||||
text-align: center;
|
||||
padding: 1.5rem 1rem;
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
border-radius: 16px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
backdrop-filter: blur(10px);
|
||||
transition: all 0.3s ease;
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
|
||||
&:hover,
|
||||
&.active {
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
transform: translateY(-4px);
|
||||
border-color: rgba(59, 130, 246, 0.3);
|
||||
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
.stat-icon {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
|
||||
border-radius: 12px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin: 0 auto 1rem;
|
||||
|
||||
i {
|
||||
font-size: 1.25rem;
|
||||
color: var(--white);
|
||||
}
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: 1.5rem;
|
||||
font-weight: 700;
|
||||
color: var(--white);
|
||||
margin-bottom: 0.5rem;
|
||||
font-family: var(--font-family-display);
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 0.875rem;
|
||||
color: rgba(255, 255, 255, 0.8);
|
||||
margin: 0;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.enterprise-cta {
|
||||
.alter-btn {
|
||||
background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
|
||||
border: none;
|
||||
color: var(--white);
|
||||
padding: 1rem 2rem;
|
||||
border-radius: 12px;
|
||||
font-weight: 600;
|
||||
text-decoration: none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
transition: all 0.3s ease;
|
||||
font-family: var(--font-family-sans);
|
||||
|
||||
&:hover {
|
||||
background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-800) 100%);
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
|
||||
color: var(--white);
|
||||
}
|
||||
|
||||
i {
|
||||
font-size: 1rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&__thumb {
|
||||
.parallax-image-wrap {
|
||||
border-radius: 20px;
|
||||
overflow: hidden;
|
||||
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
}
|
||||
|
||||
.enterprise-social {
|
||||
position: absolute;
|
||||
right: 2rem;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
z-index: 3;
|
||||
|
||||
@media (max-width: 768px) {
|
||||
position: static;
|
||||
transform: none;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
li {
|
||||
margin-bottom: 1rem;
|
||||
|
||||
@media (max-width: 768px) {
|
||||
margin-bottom: 0;
|
||||
margin-right: 1rem;
|
||||
|
||||
&:last-child {
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
|
||||
a {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
backdrop-filter: blur(10px);
|
||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||
border-radius: 12px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: var(--white);
|
||||
transition: all 0.3s ease;
|
||||
|
||||
&:hover {
|
||||
background: rgba(255, 255, 255, 0.2);
|
||||
transform: translateY(-2px);
|
||||
color: var(--white);
|
||||
}
|
||||
|
||||
i {
|
||||
font-size: 1.125rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Enterprise Service Section
|
||||
.tp-service {
|
||||
background: var(--secondary-50);
|
||||
padding: 4rem 0;
|
||||
|
||||
@media (max-width: 768px) {
|
||||
padding: 3rem 0;
|
||||
}
|
||||
|
||||
&__content {
|
||||
.enterprise-badge {
|
||||
display: inline-block;
|
||||
background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
|
||||
color: var(--white);
|
||||
padding: 0.5rem 1.25rem;
|
||||
border-radius: 50px;
|
||||
font-size: 0.875rem;
|
||||
font-weight: 500;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
margin-bottom: 1.5rem;
|
||||
font-family: var(--font-family-sans);
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: clamp(1.75rem, 3vw, 2.25rem);
|
||||
font-weight: 700;
|
||||
color: var(--secondary-800);
|
||||
margin-bottom: 1.5rem;
|
||||
font-family: var(--font-family-display);
|
||||
letter-spacing: -0.01em;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 1rem;
|
||||
line-height: 1.6;
|
||||
color: var(--secondary-600);
|
||||
margin-bottom: 2rem;
|
||||
font-family: var(--font-family-sans);
|
||||
}
|
||||
|
||||
.enterprise-features {
|
||||
margin-bottom: 2rem;
|
||||
|
||||
.feature-item {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
gap: 1rem;
|
||||
margin-bottom: 1.5rem;
|
||||
padding: 1.25rem;
|
||||
background: var(--white);
|
||||
border-radius: 12px;
|
||||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
|
||||
border: 1px solid var(--secondary-200);
|
||||
transition: all 0.3s ease;
|
||||
|
||||
&:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
|
||||
border-color: var(--primary-200);
|
||||
}
|
||||
|
||||
.feature-icon {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
|
||||
border-radius: 10px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-shrink: 0;
|
||||
|
||||
i {
|
||||
font-size: 1.125rem;
|
||||
color: var(--white);
|
||||
}
|
||||
}
|
||||
|
||||
.feature-content {
|
||||
flex: 1;
|
||||
|
||||
h6 {
|
||||
font-size: 1rem;
|
||||
font-weight: 600;
|
||||
color: var(--secondary-800);
|
||||
margin-bottom: 0.5rem;
|
||||
font-family: var(--font-family-display);
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 0.875rem;
|
||||
color: var(--secondary-500);
|
||||
margin: 0;
|
||||
line-height: 1.5;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.process-steps {
|
||||
margin-bottom: 2rem;
|
||||
|
||||
.process-step {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
gap: 1rem;
|
||||
margin-bottom: 1.5rem;
|
||||
padding: 1.25rem;
|
||||
background: var(--white);
|
||||
border-radius: 12px;
|
||||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
|
||||
border: 1px solid var(--secondary-200);
|
||||
transition: all 0.3s ease;
|
||||
|
||||
&:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
|
||||
border-color: var(--primary-200);
|
||||
}
|
||||
|
||||
.step-number {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
|
||||
border-radius: 10px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-shrink: 0;
|
||||
font-size: 0.875rem;
|
||||
font-weight: 700;
|
||||
color: var(--white);
|
||||
font-family: var(--font-family-display);
|
||||
}
|
||||
|
||||
.step-content {
|
||||
flex: 1;
|
||||
|
||||
h6 {
|
||||
font-size: 1rem;
|
||||
font-weight: 600;
|
||||
color: var(--secondary-800);
|
||||
margin-bottom: 0.5rem;
|
||||
font-family: var(--font-family-display);
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 0.875rem;
|
||||
color: var(--secondary-500);
|
||||
margin: 0;
|
||||
line-height: 1.5;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.btn-line {
|
||||
color: var(--primary-600);
|
||||
text-decoration: none;
|
||||
font-weight: 600;
|
||||
font-size: 1rem;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
transition: all 0.3s ease;
|
||||
font-family: var(--font-family-sans);
|
||||
|
||||
&:hover {
|
||||
color: var(--primary-700);
|
||||
transform: translateX(4px);
|
||||
}
|
||||
|
||||
&::after {
|
||||
content: '→';
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
&:hover::after {
|
||||
transform: translateX(4px);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&__thumb {
|
||||
.parallax-image-wrap {
|
||||
border-radius: 20px;
|
||||
overflow: hidden;
|
||||
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Enterprise Gallery/Journey Section
|
||||
.tp-gallery {
|
||||
background: linear-gradient(135deg,
|
||||
var(--secondary-900) 0%,
|
||||
var(--primary-800) 50%,
|
||||
var(--secondary-800) 100%);
|
||||
color: var(--white);
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
padding: 4rem 0;
|
||||
|
||||
@media (max-width: 768px) {
|
||||
padding: 3rem 0;
|
||||
}
|
||||
|
||||
&::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background:
|
||||
radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 60%),
|
||||
radial-gradient(circle at 70% 80%, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.container {
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
&__content {
|
||||
.enterprise-badge {
|
||||
display: inline-block;
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
backdrop-filter: blur(10px);
|
||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||
color: var(--white);
|
||||
padding: 0.5rem 1.25rem;
|
||||
border-radius: 50px;
|
||||
font-size: 0.875rem;
|
||||
font-weight: 500;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
margin-bottom: 1.5rem;
|
||||
font-family: var(--font-family-sans);
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: clamp(1.75rem, 3vw, 2.25rem);
|
||||
font-weight: 700;
|
||||
color: var(--white);
|
||||
margin-bottom: 1.5rem;
|
||||
font-family: var(--font-family-display);
|
||||
letter-spacing: -0.01em;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 1rem;
|
||||
line-height: 1.6;
|
||||
color: rgba(255, 255, 255, 0.9);
|
||||
margin-bottom: 2rem;
|
||||
font-family: var(--font-family-sans);
|
||||
}
|
||||
|
||||
.journey-milestones {
|
||||
margin-bottom: 2rem;
|
||||
|
||||
.milestone-item {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
gap: 1rem;
|
||||
margin-bottom: 1.5rem;
|
||||
padding: 1.25rem;
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
border-radius: 12px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
backdrop-filter: blur(10px);
|
||||
transition: all 0.3s ease;
|
||||
|
||||
&:hover {
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
.milestone-year {
|
||||
.year-badge {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
|
||||
border-radius: 10px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 0.875rem;
|
||||
font-weight: 700;
|
||||
color: var(--white);
|
||||
font-family: var(--font-family-display);
|
||||
}
|
||||
}
|
||||
|
||||
.milestone-content {
|
||||
flex: 1;
|
||||
|
||||
h6 {
|
||||
font-size: 1rem;
|
||||
font-weight: 600;
|
||||
color: var(--white);
|
||||
margin-bottom: 0.5rem;
|
||||
font-family: var(--font-family-display);
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 0.875rem;
|
||||
color: rgba(255, 255, 255, 0.8);
|
||||
margin: 0;
|
||||
line-height: 1.5;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.btn-line {
|
||||
color: var(--white);
|
||||
text-decoration: none;
|
||||
font-weight: 600;
|
||||
font-size: 1rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
transition: all 0.3s ease;
|
||||
font-family: var(--font-family-sans);
|
||||
|
||||
&:hover {
|
||||
color: var(--primary-300);
|
||||
transform: translateX(4px);
|
||||
}
|
||||
|
||||
&::after {
|
||||
content: '→';
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
&:hover::after {
|
||||
transform: translateX(4px);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&__thumb {
|
||||
.parallax-image-wrap {
|
||||
border-radius: 20px;
|
||||
overflow: hidden;
|
||||
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Responsive adjustments
|
||||
@media (max-width: 768px) {
|
||||
.enterprise-about-page {
|
||||
.container {
|
||||
padding-left: 1rem;
|
||||
padding-right: 1rem;
|
||||
}
|
||||
}
|
||||
|
||||
.about-banner {
|
||||
&__content {
|
||||
text-align: center;
|
||||
|
||||
.enterprise-stats {
|
||||
.row {
|
||||
gap: 0.75rem;
|
||||
}
|
||||
|
||||
.stat-item {
|
||||
padding: 0.75rem;
|
||||
|
||||
h4 {
|
||||
font-size: 1.25rem;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.tp-service {
|
||||
&__content {
|
||||
.enterprise-features,
|
||||
.process-steps {
|
||||
.feature-item,
|
||||
.process-step {
|
||||
padding: 1rem;
|
||||
gap: 0.75rem;
|
||||
|
||||
.feature-icon,
|
||||
.step-number {
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
|
||||
i {
|
||||
font-size: 1rem;
|
||||
}
|
||||
}
|
||||
|
||||
.feature-content,
|
||||
.step-content {
|
||||
h6 {
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.tp-gallery {
|
||||
&__content {
|
||||
.journey-milestones {
|
||||
.milestone-item {
|
||||
padding: 1rem;
|
||||
gap: 0.75rem;
|
||||
|
||||
.milestone-year {
|
||||
.year-badge {
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
}
|
||||
|
||||
.milestone-content {
|
||||
h6 {
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 480px) {
|
||||
.enterprise-about-page {
|
||||
section {
|
||||
padding: 2rem 0;
|
||||
}
|
||||
}
|
||||
|
||||
.about-banner {
|
||||
padding: 2.5rem 0;
|
||||
|
||||
&__content {
|
||||
h2 {
|
||||
font-size: 1.75rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 1rem;
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.enterprise-stats {
|
||||
margin-bottom: 2rem;
|
||||
|
||||
.stat-item {
|
||||
padding: 0.75rem 0.5rem;
|
||||
|
||||
h4 {
|
||||
font-size: 1.125rem;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 0.7rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.tp-service,
|
||||
.tp-gallery {
|
||||
padding: 2.5rem 0;
|
||||
|
||||
&__content {
|
||||
h2 {
|
||||
font-size: 1.5rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 0.9rem;
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
187
gnx-react/public/styles/pages/_about.scss
Normal file
187
gnx-react/public/styles/pages/_about.scss
Normal file
@@ -0,0 +1,187 @@
|
||||
// About page specific styles
|
||||
.about-banner {
|
||||
// Add any specific styles for the about banner here
|
||||
}
|
||||
|
||||
// Enterprise styling for about page
|
||||
.enterprise-badge {
|
||||
.enterprise-badge-content {
|
||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||||
color: white;
|
||||
padding: 8px 16px;
|
||||
border-radius: 20px;
|
||||
font-size: 12px;
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.5px;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
|
||||
i {
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.enterprise-stats {
|
||||
.stat-item {
|
||||
text-align: center;
|
||||
padding: 20px 10px;
|
||||
border-radius: 8px;
|
||||
background: rgba(102, 126, 234, 0.05);
|
||||
border: 1px solid rgba(102, 126, 234, 0.1);
|
||||
transition: all 0.3s ease;
|
||||
|
||||
&:hover {
|
||||
transform: translateY(-5px);
|
||||
box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: 2rem;
|
||||
margin-bottom: 8px;
|
||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
background-clip: text;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 14px;
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.enterprise-features {
|
||||
.feature-item {
|
||||
padding: 15px;
|
||||
border-radius: 8px;
|
||||
background: rgba(102, 126, 234, 0.03);
|
||||
border: 1px solid rgba(102, 126, 234, 0.1);
|
||||
transition: all 0.3s ease;
|
||||
|
||||
&:hover {
|
||||
background: rgba(102, 126, 234, 0.08);
|
||||
transform: translateX(5px);
|
||||
}
|
||||
|
||||
.feature-icon {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
border-radius: 50%;
|
||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
|
||||
i {
|
||||
color: white;
|
||||
font-size: 18px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.process-steps {
|
||||
.process-step {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
gap: 15px;
|
||||
|
||||
.step-number {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
border-radius: 50%;
|
||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||||
color: white;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-weight: 700;
|
||||
font-size: 14px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.step-content {
|
||||
h6 {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 14px;
|
||||
line-height: 1.4;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.journey-milestones {
|
||||
.milestone-item {
|
||||
padding: 15px;
|
||||
border-radius: 8px;
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
transition: all 0.3s ease;
|
||||
|
||||
&:hover {
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
transform: translateX(5px);
|
||||
}
|
||||
|
||||
.year-badge {
|
||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||||
color: white;
|
||||
padding: 8px 12px;
|
||||
border-radius: 20px;
|
||||
font-weight: 700;
|
||||
font-size: 12px;
|
||||
min-width: 60px;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.enterprise-social {
|
||||
li {
|
||||
a {
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||
transition: all 0.3s ease;
|
||||
|
||||
&:hover {
|
||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||||
border-color: transparent;
|
||||
transform: translateY(-3px);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Responsive adjustments
|
||||
@media (max-width: 768px) {
|
||||
.enterprise-stats {
|
||||
.stat-item {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.enterprise-features {
|
||||
.feature-item {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
}
|
||||
|
||||
.process-steps {
|
||||
.process-step {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.journey-milestones {
|
||||
.milestone-item {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
}
|
||||
}
|
||||
2626
gnx-react/public/styles/sections/_all-sections.scss
Normal file
2626
gnx-react/public/styles/sections/_all-sections.scss
Normal file
File diff suppressed because it is too large
Load Diff
2966
gnx-react/public/styles/sections/_enterprise-service.scss
Normal file
2966
gnx-react/public/styles/sections/_enterprise-service.scss
Normal file
File diff suppressed because it is too large
Load Diff
480
gnx-react/public/styles/utilities/_modern-framework.scss
Normal file
480
gnx-react/public/styles/utilities/_modern-framework.scss
Normal file
@@ -0,0 +1,480 @@
|
||||
/* ====
|
||||
--------- Modern CSS Framework (Bootstrap Replacement) ---------
|
||||
==== */
|
||||
|
||||
@use "../abstracts/mixins" as *;
|
||||
@use "../abstracts/variables" as *;
|
||||
|
||||
// Container system
|
||||
.container {
|
||||
@include container();
|
||||
}
|
||||
|
||||
.container-fluid {
|
||||
width: 100%;
|
||||
padding-left: var(--space-4);
|
||||
padding-right: var(--space-4);
|
||||
}
|
||||
|
||||
// Grid system
|
||||
.row {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
margin-left: calc(var(--space-4) * -0.5);
|
||||
margin-right: calc(var(--space-4) * -0.5);
|
||||
}
|
||||
|
||||
.col-12 { flex: 0 0 100%; max-width: 100%; }
|
||||
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
|
||||
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
|
||||
.col-9 { flex: 0 0 75%; max-width: 75%; }
|
||||
.col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
|
||||
.col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
|
||||
.col-6 { flex: 0 0 50%; max-width: 50%; }
|
||||
.col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
|
||||
.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
|
||||
.col-3 { flex: 0 0 25%; max-width: 25%; }
|
||||
.col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
|
||||
.col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
|
||||
|
||||
// Responsive columns
|
||||
@media (min-width: 576px) {
|
||||
.col-sm-12 { flex: 0 0 100%; max-width: 100%; }
|
||||
.col-sm-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
|
||||
.col-sm-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
|
||||
.col-sm-9 { flex: 0 0 75%; max-width: 75%; }
|
||||
.col-sm-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
|
||||
.col-sm-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
|
||||
.col-sm-6 { flex: 0 0 50%; max-width: 50%; }
|
||||
.col-sm-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
|
||||
.col-sm-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
|
||||
.col-sm-3 { flex: 0 0 25%; max-width: 25%; }
|
||||
.col-sm-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
|
||||
.col-sm-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.col-md-12 { flex: 0 0 100%; max-width: 100%; }
|
||||
.col-md-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
|
||||
.col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
|
||||
.col-md-9 { flex: 0 0 75%; max-width: 75%; }
|
||||
.col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
|
||||
.col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
|
||||
.col-md-6 { flex: 0 0 50%; max-width: 50%; }
|
||||
.col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
|
||||
.col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
|
||||
.col-md-3 { flex: 0 0 25%; max-width: 25%; }
|
||||
.col-md-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
|
||||
.col-md-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
|
||||
}
|
||||
|
||||
@media (min-width: 992px) {
|
||||
.col-lg-12 { flex: 0 0 100%; max-width: 100%; }
|
||||
.col-lg-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
|
||||
.col-lg-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
|
||||
.col-lg-9 { flex: 0 0 75%; max-width: 75%; }
|
||||
.col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
|
||||
.col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
|
||||
.col-lg-6 { flex: 0 0 50%; max-width: 50%; }
|
||||
.col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
|
||||
.col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
|
||||
.col-lg-3 { flex: 0 0 25%; max-width: 25%; }
|
||||
.col-lg-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
|
||||
.col-lg-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
|
||||
}
|
||||
|
||||
@media (min-width: 1200px) {
|
||||
.col-xl-12 { flex: 0 0 100%; max-width: 100%; }
|
||||
.col-xl-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
|
||||
.col-xl-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
|
||||
.col-xl-9 { flex: 0 0 75%; max-width: 75%; }
|
||||
.col-xl-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
|
||||
.col-xl-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
|
||||
.col-xl-6 { flex: 0 0 50%; max-width: 50%; }
|
||||
.col-xl-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
|
||||
.col-xl-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
|
||||
.col-xl-3 { flex: 0 0 25%; max-width: 25%; }
|
||||
.col-xl-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
|
||||
.col-xl-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
|
||||
}
|
||||
|
||||
@media (min-width: 1400px) {
|
||||
.col-xxl-12 { flex: 0 0 100%; max-width: 100%; }
|
||||
.col-xxl-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
|
||||
.col-xxl-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
|
||||
.col-xxl-9 { flex: 0 0 75%; max-width: 75%; }
|
||||
.col-xxl-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
|
||||
.col-xxl-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
|
||||
.col-xxl-6 { flex: 0 0 50%; max-width: 50%; }
|
||||
.col-xxl-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
|
||||
.col-xxl-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
|
||||
.col-xxl-3 { flex: 0 0 25%; max-width: 25%; }
|
||||
.col-xxl-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
|
||||
.col-xxl-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
|
||||
}
|
||||
|
||||
// Column padding
|
||||
[class*="col-"] {
|
||||
padding-left: calc(var(--space-4) * 0.5);
|
||||
padding-right: calc(var(--space-4) * 0.5);
|
||||
}
|
||||
|
||||
// Display utilities
|
||||
.d-none { display: none !important; }
|
||||
.d-inline { display: inline !important; }
|
||||
.d-inline-block { display: inline-block !important; }
|
||||
.d-block { display: block !important; }
|
||||
.d-flex { display: flex !important; }
|
||||
.d-inline-flex { display: inline-flex !important; }
|
||||
.d-grid { display: grid !important; }
|
||||
|
||||
// Responsive display utilities
|
||||
@media (max-width: 575.98px) {
|
||||
.d-xs-none { display: none !important; }
|
||||
.d-xs-inline { display: inline !important; }
|
||||
.d-xs-inline-block { display: inline-block !important; }
|
||||
.d-xs-block { display: block !important; }
|
||||
.d-xs-flex { display: flex !important; }
|
||||
.d-xs-inline-flex { display: inline-flex !important; }
|
||||
.d-xs-grid { display: grid !important; }
|
||||
}
|
||||
|
||||
@media (min-width: 576px) {
|
||||
.d-sm-none { display: none !important; }
|
||||
.d-sm-inline { display: inline !important; }
|
||||
.d-sm-inline-block { display: inline-block !important; }
|
||||
.d-sm-block { display: block !important; }
|
||||
.d-sm-flex { display: flex !important; }
|
||||
.d-sm-inline-flex { display: inline-flex !important; }
|
||||
.d-sm-grid { display: grid !important; }
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.d-md-none { display: none !important; }
|
||||
.d-md-inline { display: inline !important; }
|
||||
.d-md-inline-block { display: inline-block !important; }
|
||||
.d-md-block { display: block !important; }
|
||||
.d-md-flex { display: flex !important; }
|
||||
.d-md-inline-flex { display: inline-flex !important; }
|
||||
.d-md-grid { display: grid !important; }
|
||||
}
|
||||
|
||||
@media (min-width: 992px) {
|
||||
.d-lg-none { display: none !important; }
|
||||
.d-lg-inline { display: inline !important; }
|
||||
.d-lg-inline-block { display: inline-block !important; }
|
||||
.d-lg-block { display: block !important; }
|
||||
.d-lg-flex { display: flex !important; }
|
||||
.d-lg-inline-flex { display: inline-flex !important; }
|
||||
.d-lg-grid { display: grid !important; }
|
||||
}
|
||||
|
||||
@media (min-width: 1200px) {
|
||||
.d-xl-none { display: none !important; }
|
||||
.d-xl-inline { display: inline !important; }
|
||||
.d-xl-inline-block { display: inline-block !important; }
|
||||
.d-xl-block { display: block !important; }
|
||||
.d-xl-flex { display: flex !important; }
|
||||
.d-xl-inline-flex { display: inline-flex !important; }
|
||||
.d-xl-grid { display: grid !important; }
|
||||
}
|
||||
|
||||
// Flexbox utilities
|
||||
.flex-row { flex-direction: row !important; }
|
||||
.flex-column { flex-direction: column !important; }
|
||||
.flex-row-reverse { flex-direction: row-reverse !important; }
|
||||
.flex-column-reverse { flex-direction: column-reverse !important; }
|
||||
|
||||
.flex-wrap { flex-wrap: wrap !important; }
|
||||
.flex-nowrap { flex-wrap: nowrap !important; }
|
||||
.flex-wrap-reverse { flex-wrap: wrap-reverse !important; }
|
||||
|
||||
.justify-content-start { justify-content: flex-start !important; }
|
||||
.justify-content-end { justify-content: flex-end !important; }
|
||||
.justify-content-center { justify-content: center !important; }
|
||||
.justify-content-between { justify-content: space-between !important; }
|
||||
.justify-content-around { justify-content: space-around !important; }
|
||||
.justify-content-evenly { justify-content: space-evenly !important; }
|
||||
|
||||
.align-items-start { align-items: flex-start !important; }
|
||||
.align-items-end { align-items: flex-end !important; }
|
||||
.align-items-center { align-items: center !important; }
|
||||
.align-items-baseline { align-items: baseline !important; }
|
||||
.align-items-stretch { align-items: stretch !important; }
|
||||
|
||||
.align-content-start { align-content: flex-start !important; }
|
||||
.align-content-end { align-content: flex-end !important; }
|
||||
.align-content-center { align-content: center !important; }
|
||||
.align-content-between { align-content: space-between !important; }
|
||||
.align-content-around { align-content: space-around !important; }
|
||||
.align-content-stretch { align-content: stretch !important; }
|
||||
|
||||
.align-self-auto { align-self: auto !important; }
|
||||
.align-self-start { align-self: flex-start !important; }
|
||||
.align-self-end { align-self: flex-end !important; }
|
||||
.align-self-center { align-self: center !important; }
|
||||
.align-self-baseline { align-self: baseline !important; }
|
||||
.align-self-stretch { align-self: stretch !important; }
|
||||
|
||||
// Spacing utilities
|
||||
@for $i from 0 through 12 {
|
||||
.m-#{$i} { margin: var(--space-#{$i}) !important; }
|
||||
.mt-#{$i} { margin-top: var(--space-#{$i}) !important; }
|
||||
.mr-#{$i} { margin-right: var(--space-#{$i}) !important; }
|
||||
.mb-#{$i} { margin-bottom: var(--space-#{$i}) !important; }
|
||||
.ml-#{$i} { margin-left: var(--space-#{$i}) !important; }
|
||||
.mx-#{$i} {
|
||||
margin-left: var(--space-#{$i}) !important;
|
||||
margin-right: var(--space-#{$i}) !important;
|
||||
}
|
||||
.my-#{$i} {
|
||||
margin-top: var(--space-#{$i}) !important;
|
||||
margin-bottom: var(--space-#{$i}) !important;
|
||||
}
|
||||
|
||||
.p-#{$i} { padding: var(--space-#{$i}) !important; }
|
||||
.pt-#{$i} { padding-top: var(--space-#{$i}) !important; }
|
||||
.pr-#{$i} { padding-right: var(--space-#{$i}) !important; }
|
||||
.pb-#{$i} { padding-bottom: var(--space-#{$i}) !important; }
|
||||
.pl-#{$i} { padding-left: var(--space-#{$i}) !important; }
|
||||
.px-#{$i} {
|
||||
padding-left: var(--space-#{$i}) !important;
|
||||
padding-right: var(--space-#{$i}) !important;
|
||||
}
|
||||
.py-#{$i} {
|
||||
padding-top: var(--space-#{$i}) !important;
|
||||
padding-bottom: var(--space-#{$i}) !important;
|
||||
}
|
||||
}
|
||||
|
||||
// Text utilities
|
||||
.text-left { text-align: left !important; }
|
||||
.text-right { text-align: right !important; }
|
||||
.text-center { text-align: center !important; }
|
||||
.text-justify { text-align: justify !important; }
|
||||
|
||||
.text-lowercase { text-transform: lowercase !important; }
|
||||
.text-uppercase { text-transform: uppercase !important; }
|
||||
.text-capitalize { text-transform: capitalize !important; }
|
||||
|
||||
.text-decoration-none { text-decoration: none !important; }
|
||||
.text-decoration-underline { text-decoration: underline !important; }
|
||||
.text-decoration-line-through { text-decoration: line-through !important; }
|
||||
|
||||
// Font weight utilities
|
||||
.fw-light { font-weight: var(--font-weight-light) !important; }
|
||||
.fw-normal { font-weight: var(--font-weight-normal) !important; }
|
||||
.fw-medium { font-weight: var(--font-weight-medium) !important; }
|
||||
.fw-semibold { font-weight: var(--font-weight-semibold) !important; }
|
||||
.fw-bold { font-weight: var(--font-weight-bold) !important; }
|
||||
.fw-bolder { font-weight: var(--font-weight-bolder) !important; }
|
||||
|
||||
// Font size utilities
|
||||
.text-xs { font-size: var(--text-xs) !important; }
|
||||
.text-sm { font-size: var(--text-sm) !important; }
|
||||
.text-base { font-size: var(--text-base) !important; }
|
||||
.text-lg { font-size: var(--text-lg) !important; }
|
||||
.text-xl { font-size: var(--text-xl) !important; }
|
||||
.text-2xl { font-size: var(--text-2xl) !important; }
|
||||
.text-3xl { font-size: var(--text-3xl) !important; }
|
||||
.text-4xl { font-size: var(--text-4xl) !important; }
|
||||
|
||||
// Color utilities
|
||||
.text-primary { color: var(--primary-600) !important; }
|
||||
.text-secondary { color: var(--secondary-600) !important; }
|
||||
.text-success { color: var(--success-600) !important; }
|
||||
.text-danger { color: var(--danger-600) !important; }
|
||||
.text-warning { color: var(--warning-600) !important; }
|
||||
.text-info { color: var(--info-600) !important; }
|
||||
.text-light { color: var(--light) !important; }
|
||||
.text-dark { color: var(--dark) !important; }
|
||||
.text-white { color: var(--white) !important; }
|
||||
.text-black { color: var(--black) !important; }
|
||||
|
||||
// Background utilities
|
||||
.bg-primary { background-color: var(--primary-600) !important; }
|
||||
.bg-secondary { background-color: var(--secondary-600) !important; }
|
||||
.bg-success { background-color: var(--success-600) !important; }
|
||||
.bg-danger { background-color: var(--danger-600) !important; }
|
||||
.bg-warning { background-color: var(--warning-600) !important; }
|
||||
.bg-info { background-color: var(--info-600) !important; }
|
||||
.bg-light { background-color: var(--light) !important; }
|
||||
.bg-dark { background-color: var(--dark) !important; }
|
||||
.bg-white { background-color: var(--white) !important; }
|
||||
.bg-black { background-color: var(--black) !important; }
|
||||
.bg-transparent { background-color: transparent !important; }
|
||||
|
||||
// Border utilities
|
||||
.border { border: 1px solid var(--secondary-300) !important; }
|
||||
.border-0 { border: 0 !important; }
|
||||
.border-top { border-top: 1px solid var(--secondary-300) !important; }
|
||||
.border-end { border-right: 1px solid var(--secondary-300) !important; }
|
||||
.border-bottom { border-bottom: 1px solid var(--secondary-300) !important; }
|
||||
.border-start { border-left: 1px solid var(--secondary-300) !important; }
|
||||
|
||||
.border-primary { border-color: var(--primary-600) !important; }
|
||||
.border-secondary { border-color: var(--secondary-600) !important; }
|
||||
.border-success { border-color: var(--success-600) !important; }
|
||||
.border-danger { border-color: var(--danger-600) !important; }
|
||||
.border-warning { border-color: var(--warning-600) !important; }
|
||||
.border-info { border-color: var(--info-600) !important; }
|
||||
.border-light { border-color: var(--light) !important; }
|
||||
.border-dark { border-color: var(--dark) !important; }
|
||||
.border-white { border-color: var(--white) !important; }
|
||||
.border-black { border-color: var(--black) !important; }
|
||||
|
||||
// Border radius utilities
|
||||
.rounded { border-radius: var(--radius-base) !important; }
|
||||
.rounded-0 { border-radius: 0 !important; }
|
||||
.rounded-1 { border-radius: var(--radius-sm) !important; }
|
||||
.rounded-2 { border-radius: var(--radius-base) !important; }
|
||||
.rounded-3 { border-radius: var(--radius-lg) !important; }
|
||||
.rounded-circle { border-radius: 50% !important; }
|
||||
.rounded-pill { border-radius: var(--radius-full) !important; }
|
||||
|
||||
.rounded-top { border-top-left-radius: var(--radius-base) !important; border-top-right-radius: var(--radius-base) !important; }
|
||||
.rounded-end { border-top-right-radius: var(--radius-base) !important; border-bottom-right-radius: var(--radius-base) !important; }
|
||||
.rounded-bottom { border-bottom-right-radius: var(--radius-base) !important; border-bottom-left-radius: var(--radius-base) !important; }
|
||||
.rounded-start { border-top-left-radius: var(--radius-base) !important; border-bottom-left-radius: var(--radius-base) !important; }
|
||||
|
||||
// Shadow utilities
|
||||
.shadow-none { box-shadow: none !important; }
|
||||
.shadow-sm { box-shadow: var(--shadow-sm) !important; }
|
||||
.shadow { box-shadow: var(--shadow-base) !important; }
|
||||
.shadow-lg { box-shadow: var(--shadow-lg) !important; }
|
||||
.shadow-xl { box-shadow: var(--shadow-xl) !important; }
|
||||
|
||||
// Position utilities
|
||||
.position-static { position: static !important; }
|
||||
.position-relative { position: relative !important; }
|
||||
.position-absolute { position: absolute !important; }
|
||||
.position-fixed { position: fixed !important; }
|
||||
.position-sticky { position: sticky !important; }
|
||||
|
||||
// Width and height utilities
|
||||
.w-25 { width: 25% !important; }
|
||||
.w-50 { width: 50% !important; }
|
||||
.w-75 { width: 75% !important; }
|
||||
.w-100 { width: 100% !important; }
|
||||
.w-auto { width: auto !important; }
|
||||
|
||||
.h-25 { height: 25% !important; }
|
||||
.h-50 { height: 50% !important; }
|
||||
.h-75 { height: 75% !important; }
|
||||
.h-100 { height: 100% !important; }
|
||||
.h-auto { height: auto !important; }
|
||||
|
||||
.mw-100 { max-width: 100% !important; }
|
||||
.mh-100 { max-height: 100% !important; }
|
||||
|
||||
// Overflow utilities
|
||||
.overflow-auto { overflow: auto !important; }
|
||||
.overflow-hidden { overflow: hidden !important; }
|
||||
.overflow-visible { overflow: visible !important; }
|
||||
.overflow-scroll { overflow: scroll !important; }
|
||||
|
||||
// Vertical alignment
|
||||
.align-baseline { vertical-align: baseline !important; }
|
||||
.align-top { vertical-align: top !important; }
|
||||
.align-middle { vertical-align: middle !important; }
|
||||
.align-bottom { vertical-align: bottom !important; }
|
||||
.align-text-bottom { vertical-align: text-bottom !important; }
|
||||
.align-text-top { vertical-align: text-top !important; }
|
||||
|
||||
// Visibility utilities
|
||||
.visible { visibility: visible !important; }
|
||||
.invisible { visibility: hidden !important; }
|
||||
|
||||
// Modern button classes (Bootstrap replacement)
|
||||
.btn {
|
||||
@include button-base;
|
||||
@include focus-visible;
|
||||
|
||||
// Primary button
|
||||
&.btn-primary {
|
||||
@include button-variant(var(--primary-600), var(--white));
|
||||
}
|
||||
|
||||
// Secondary button
|
||||
&.btn-secondary {
|
||||
@include button-variant(var(--secondary-600), var(--white));
|
||||
}
|
||||
|
||||
// Success button
|
||||
&.btn-success {
|
||||
@include button-variant(var(--success-600), var(--white));
|
||||
}
|
||||
|
||||
// Danger button
|
||||
&.btn-danger {
|
||||
@include button-variant(var(--danger-600), var(--white));
|
||||
}
|
||||
|
||||
// Warning button
|
||||
&.btn-warning {
|
||||
@include button-variant(var(--warning-600), var(--white));
|
||||
}
|
||||
|
||||
// Info button
|
||||
&.btn-info {
|
||||
@include button-variant(var(--info-600), var(--white));
|
||||
}
|
||||
|
||||
// Light button
|
||||
&.btn-light {
|
||||
@include button-variant(var(--light), var(--dark));
|
||||
}
|
||||
|
||||
// Dark button
|
||||
&.btn-dark {
|
||||
@include button-variant(var(--dark), var(--white));
|
||||
}
|
||||
|
||||
// Outline variants
|
||||
&.btn-outline-primary {
|
||||
@include button-outline(var(--primary-600));
|
||||
}
|
||||
|
||||
&.btn-outline-secondary {
|
||||
@include button-outline(var(--secondary-600));
|
||||
}
|
||||
|
||||
&.btn-outline-success {
|
||||
@include button-outline(var(--success-600));
|
||||
}
|
||||
|
||||
&.btn-outline-danger {
|
||||
@include button-outline(var(--danger-600));
|
||||
}
|
||||
|
||||
&.btn-outline-warning {
|
||||
@include button-outline(var(--warning-600));
|
||||
}
|
||||
|
||||
&.btn-outline-info {
|
||||
@include button-outline(var(--info-600));
|
||||
}
|
||||
|
||||
&.btn-outline-light {
|
||||
@include button-outline(var(--light));
|
||||
}
|
||||
|
||||
&.btn-outline-dark {
|
||||
@include button-outline(var(--dark));
|
||||
}
|
||||
|
||||
// Size variants
|
||||
&.btn-sm {
|
||||
padding: var(--space-2) var(--space-4);
|
||||
font-size: var(--text-xs);
|
||||
}
|
||||
|
||||
&.btn-lg {
|
||||
padding: var(--space-4) var(--space-8);
|
||||
font-size: var(--text-lg);
|
||||
}
|
||||
}
|
||||
|
||||
/* ====
|
||||
--------- Modern CSS Framework End ---------
|
||||
==== */
|
||||
Reference in New Issue
Block a user