Some checks failed
- Add buyPrice and buyDate to positions for PnL tracking - Implement backend analytics service for real-time portfolio performance - Add server-side security screener with filtering, sorting, and pagination - Update frontend UI with analytics summaries and sortable screener table - Optimize MOEX API calls with batch fetching and portfolio-specific caching - Add unit tests for analytics and screener services
36 lines
708 B
CSS
36 lines
708 B
CSS
*,
|
|
*::before,
|
|
*::after {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
:root {
|
|
--color-bg: #f5f5f5;
|
|
--color-surface: #ffffff;
|
|
--color-text: #1a1a1a;
|
|
--color-text-secondary: #666;
|
|
--color-primary: #1976d2;
|
|
--color-positive: #2e7d32;
|
|
--color-negative: #c62828;
|
|
--border-radius: 8px;
|
|
--shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
|
|
}
|
|
|
|
.pnl-cell { text-align: right; }
|
|
.positive { color: var(--color-positive); }
|
|
.negative { color: var(--color-negative); }
|
|
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
background: var(--color-bg);
|
|
color: var(--color-text);
|
|
line-height: 1.6;
|
|
}
|
|
|
|
a {
|
|
color: var(--color-primary);
|
|
text-decoration: none;
|
|
}
|