37 lines
542 B
CSS
37 lines
542 B
CSS
|
|
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;600;700;800;900&display=swap");
|
||
|
|
|
||
|
|
* {
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
box-sizing: border-box;
|
||
|
|
}
|
||
|
|
|
||
|
|
:root {
|
||
|
|
--bg: #020617;
|
||
|
|
--panel: #0f172a;
|
||
|
|
--card: #1e293b;
|
||
|
|
--border: #1e3a5f;
|
||
|
|
--text: #e2e8f0;
|
||
|
|
--muted: #64748b;
|
||
|
|
--accent: #3b82f6;
|
||
|
|
|
||
|
|
--crit: #ef4444;
|
||
|
|
--high: #f59e0b;
|
||
|
|
}
|
||
|
|
|
||
|
|
html,
|
||
|
|
body {
|
||
|
|
height: 100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
body {
|
||
|
|
font-family: "Noto Sans KR", sans-serif;
|
||
|
|
background: var(--bg);
|
||
|
|
color: var(--text);
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
|
||
|
|
#root {
|
||
|
|
height: 100%;
|
||
|
|
}
|