Created
March 12, 2026 02:31
-
-
Save aguilavajz/3526340c94b245e724cdd5fff435075d to your computer and use it in GitHub Desktop.
APEX Insights - APEX Universal Theme Premium Overrides
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* ===================================================================== | |
| main.css - APEX Universal Theme Premium Overrides | |
| Consolidated styling via Workspace Static Files | |
| ===================================================================== */ | |
| /* 1. Premium Glassmorphism Card Override */ | |
| /* Custom Template Option implementation */ | |
| .custom-glass-card { | |
| background: rgba(255, 255, 255, 0.1); | |
| backdrop-filter: blur(10px); /* Requires browser support */ | |
| -webkit-backdrop-filter: blur(10px); | |
| border: 1px solid rgba(255, 255, 255, 0.2); | |
| border-radius: 12px; | |
| /* Leveraging native UT shadows if available, fallback otherwise */ | |
| box-shadow: var(--ut-component-box-shadow, 0 8px 32px 0 rgba(31, 38, 135, 0.37)); | |
| } | |
| /* 2. Custom Badge using Universal Theme Variables */ | |
| /* Fully supports Theme Roller Dark Mode flipping automatically */ | |
| .my-custom-badge { | |
| background-color: var(--ut-palette-primary); | |
| color: var(--ut-component-text-color); | |
| border: 1px solid var(--ut-component-border-color); | |
| border-radius: 4px; | |
| padding: 0.25rem 0.5rem; | |
| font-weight: bold; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment