admin / Synapse-Cortex
publicSelf Hosted ITSM Tool with RBAC/Tenanting and MFA
Synapse-Cortex / Synapse-Cortexv2 / frontend / src / index.css
1034 B · main
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | @tailwind base; @tailwind components; @tailwind utilities; html, body, #root { height: 100%; width: 100%; } body { margin: 0; background-color: #030d18; background-image: radial-gradient(ellipse 900px 500px at 50% -10%, rgba(34, 211, 255, 0.10), transparent 60%), radial-gradient(ellipse 700px 500px at -10% 0%, rgba(10, 143, 184, 0.10), transparent 60%), linear-gradient(180deg, #030d18 0%, #030d18 100%); background-attachment: fixed; font-family: Inter, system-ui, sans-serif; color: #c8d4e0; } .scan-line { background-image: repeating-linear-gradient( 0deg, rgba(34, 211, 255, 0.025) 0px, rgba(34, 211, 255, 0.025) 1px, transparent 1px, transparent 3px ); } .glow-blue { box-shadow: 0 0 0 1px rgba(34, 211, 255, 0.35), 0 0 24px rgba(34, 211, 255, 0.25), 0 0 70px rgba(34, 211, 255, 0.10), inset 0 1px 0 rgba(200, 212, 224, 0.15); } .glow-text { text-shadow: 0 0 24px rgba(34, 211, 255, 0.45); } ::selection { background: #22d3ff; color: #030d18; } |