Files
aplp.frontend.lms/src/index.css
T

55 lines
992 B
CSS
Raw Normal View History

2026-08-12 21:18:47 +07:00
:root {
2026-08-12 22:15:06 +07:00
--bg: #f6f7f9;
--surface: #ffffff;
--surface-muted: #f0f3f7;
--border: #dfe3ea;
--text: #1d2433;
--text-muted: #667085;
--primary: #2563eb;
--primary-dark: #1d4ed8;
--primary-soft: #e9f0ff;
--primary-contrast: #ffffff;
--interactive-hover: #f0f3f7;
--interactive-active: #e9f0ff;
--focus: #2563eb;
--shadow: 0 16px 42px rgba(29, 36, 51, 0.08);
--shadow-color: rgba(0, 0, 0, 0.05);
--sidebar-width: 264px;
--sidebar-collapsed-width: 88px;
2026-08-12 21:18:47 +07:00
2026-08-12 22:15:06 +07:00
font-family:
Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
sans-serif;
2026-08-12 21:18:47 +07:00
color: var(--text);
background: var(--bg);
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
2026-08-12 22:15:06 +07:00
* {
2026-08-12 21:18:47 +07:00
box-sizing: border-box;
}
2026-08-12 22:15:06 +07:00
body {
min-width: 320px;
min-height: 100vh;
2026-08-12 21:18:47 +07:00
margin: 0;
}
2026-08-12 22:15:06 +07:00
a {
color: inherit;
2026-08-12 21:18:47 +07:00
}
2026-08-12 22:15:06 +07:00
button,
input,
textarea,
select {
font: inherit;
}
#root {
min-height: 100vh;
2026-08-12 21:18:47 +07:00
}