Spaces:
Sleeping
Sleeping
| body, | |
| html, | |
| #root { | |
| margin: 0; | |
| padding: 0; | |
| height: 100%; | |
| width: 100%; | |
| box-sizing: border-box; | |
| } | |
| body { | |
| margin: 0; | |
| } | |
| /* =============================== | |
| Dark Select Dropdown (IRIS) | |
| =============================== */ | |
| .dark-select { | |
| background-color: #111827; | |
| color: rgb(51, 8, 8); | |
| border: 1px solid rgba(255, 255, 255, 0.2); | |
| padding: 0.75rem; | |
| border-radius: 0.5rem; | |
| color-scheme: dark; | |
| } | |
| .dark-select option { | |
| background-color: #111827; | |
| color: rgb(4, 42, 31); | |
| } | |
| /* =============================== | |
| Scrollbar Utilities | |
| =============================== */ | |
| .hide-scrollbar::-webkit-scrollbar { | |
| display: none; | |
| } | |
| .hide-scrollbar { | |
| -ms-overflow-style: none; | |
| /* IE and Edge */ | |
| scrollbar-width: none; | |
| /* Firefox */ | |
| } | |
| /* =============================== | |
| Print Styles for Resume Builder | |
| =============================== */ | |
| @media print { | |
| body * { | |
| visibility: hidden; | |
| } | |
| .resume-print-area, | |
| .resume-print-area * { | |
| visibility: visible; | |
| } | |
| /* Force ancestors to be static so absolute positioning aligns to the page */ | |
| body, html, #root, .no-print-bg { | |
| position: static ; | |
| margin: 0 ; | |
| padding: 0 ; | |
| } | |
| .hide-scrollbar { | |
| position: absolute ; | |
| top: 0 ; | |
| left: 0 ; | |
| overflow: visible ; | |
| display: block ; | |
| } | |
| .resume-print-area { | |
| position: relative ; | |
| margin: 0 auto ; | |
| width: 100% ; | |
| max-width: none ; | |
| box-shadow: none ; | |
| background-color: white ; | |
| } | |
| .no-print { | |
| display: none ; | |
| } | |
| @page { | |
| margin: 0; | |
| } | |
| } |