Files
marketplaces/src/styles.scss

140 lines
2.9 KiB
SCSS
Raw Normal View History

2026-01-18 18:57:06 +04:00
/* Global Styles */
/* PrimeNG and PrimeIcons */
@import 'primeicons/primeicons.css';
2026-02-14 00:45:17 +04:00
/* Google Fonts - DM Sans for Dexar redesign */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');
2026-01-18 18:57:06 +04:00
/* Font optimization */
@font-face {
font-family: system-ui;
font-display: swap;
}
/* Default CSS Variables - will be overridden by theme files */
:root {
2026-02-14 02:34:11 +04:00
--primary-color: #497671;
--primary-hover: #3d635f;
--secondary-color: #a1b4b5;
--secondary-hover: #8da3a4;
--accent-color: #a7ceca;
--accent-hover: #91b9b5;
2026-01-18 18:57:06 +04:00
2026-02-14 02:34:11 +04:00
--gradient-primary: linear-gradient(360deg, #497671 0%, #a7ceca 100%);
--gradient-secondary: linear-gradient(135deg, #a1b4b5 0%, #677b78 100%);
--gradient-hero: linear-gradient(360deg, #497671 0%, #a7ceca 100%);
2026-01-18 18:57:06 +04:00
2026-02-14 02:34:11 +04:00
--text-primary: #1e3c38;
--text-secondary: #667a77;
--text-light: #828e8d;
2026-01-18 18:57:06 +04:00
--bg-primary: #ffffff;
2026-02-14 02:34:11 +04:00
--bg-secondary: #f5f5f5;
--bg-tertiary: #f0f0f0;
2026-01-18 18:57:06 +04:00
--success-color: #10b981;
--warning-color: #f59e0b;
--error-color: #ef4444;
--info-color: #3b82f6;
2026-02-14 02:34:11 +04:00
--border-color: #d3dad9;
--border-dark: #677b78;
2026-01-18 18:57:06 +04:00
--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
2026-02-14 02:34:11 +04:00
--shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
--shadow-lg: 0 12px 32px rgba(73, 118, 113, 0.2);
2026-01-18 18:57:06 +04:00
--radius-sm: 8px;
--radius-md: 12px;
2026-02-14 02:34:11 +04:00
--radius-lg: 13px;
--radius-xl: 22px;
2026-01-18 18:57:06 +04:00
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
font-size: 16px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
scroll-behavior: smooth;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
line-height: 1.6;
color: var(--text-primary);
2026-02-14 02:34:11 +04:00
background: #f5f5f5;
2026-01-18 18:57:06 +04:00
min-height: 100vh;
2026-02-14 01:28:08 +04:00
overflow-x: hidden;
2026-01-18 18:57:06 +04:00
}
/* Smooth Transitions */
a, button, input, textarea, select {
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Responsive Typography */
@media (max-width: 768px) {
html {
font-size: 14px;
}
}
/* Scrollbar Styling */
::-webkit-scrollbar {
width: 10px;
height: 10px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background: var(--gradient-primary);
border-radius: 10px;
transition: background 0.3s ease;
}
::-webkit-scrollbar-thumb:hover {
background: var(--gradient-secondary);
}
/* Focus Styles */
*:focus-visible {
outline: 2px solid var(--primary-color);
outline-offset: 2px;
}
/* Utility Classes */
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.text-center {
text-align: center;
}
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }