@ieee-ui/ui 0.0.23 → 0.0.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ui.css +1 -1
- package/package.json +1 -1
package/dist/ui.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
:root{--color-primary: #00529b;--color-primary-foreground: #ffffff;--color-secondary: #bd0d2a;--color-secondary-foreground: #ffffff;--color-accent: #ffa300;--color-accent-foreground: #1a1a1a;--color-success: #78be20;--color-success-foreground: #ffffff;--color-info: #00aeef;--color-info-foreground: #ffffff;--color-highlight: #009ec3;--color-highlight-foreground: #ffffff;--color-destructive: #bd0d2a;--color-destructive-foreground: #ffffff;--color-background: #ffffff;--color-background-light: #eef6fc;--color-foreground: #1a1a1a;--color-surface: #f9fbfd;--color-border: #d0d8e0;--color-input: #d0d8e0;--color-ring: #00529b;--color-text-primary: #1a1a1a;--color-text-muted: #4a5568;--color-muted: #f9fbfd;--color-muted-foreground: #4a5568;--color-card: #ffffff;--color-card-foreground: #1a1a1a;--color-modal: #ffffff;--color-navbar: #ffffff;--color-button-primary: #00529b;--color-button-secondary: #ffa300;--color-button-danger: #bd0d2a;--radius: .5rem}.dark{--color-primary: #00427a;--color-primary-foreground: #ffffff;--color-secondary: #a54e62;--color-secondary-foreground: #ffffff;--color-accent: #ffc352;--color-accent-foreground: #1a1a1a;--color-success: #4aa63c;--color-success-foreground: #ffffff;--color-info: #0075a1;--color-info-foreground: #ffffff;--color-highlight: #006f82;--color-highlight-foreground: #ffffff;--color-destructive: #a54e62;--color-destructive-foreground: #ffffff;--color-background: #0f1214;--color-background-light: #1a1d21;--color-foreground: #ffffff;--color-surface: #1a1d21;--color-border: #2a2f33;--color-input: #2a2f33;--color-ring: #0062a3;--color-text-primary: #ffffff;--color-text-muted: #a0a0a0;--color-muted: #1a1d21;--color-muted-foreground: #a0a0a0;--color-card: #1a1d21;--color-card-foreground: #ffffff;--color-modal: #1a1d21;--color-navbar: #0f1214;--color-button-primary: #0062a3;--color-button-secondary: #ffc352;--color-button-danger: #a54e62}*{border-color:var(--color-border)}body{background-color:var(--color-background);color:var(--color-foreground);font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,sans-serif}@keyframes shimmer{to{transform:translate(100%)}}.animate-shimmer{animation:shimmer 1.5s infinite}.loader{--size: min(700px, 80vmin);--duration: 2s;--logo-color: var(--color-primary);--background: radial-gradient( circle at center, rgb(from var(--color-primary) r g b / .1) 0%, transparent 100% );height:var(--size);aspect-ratio:1;position:relative}.loader .box{position:absolute;background:var(--background);border-radius:50%;border-top:2px solid var(--color-primary);box-shadow:0 5px 15px rgb(from var(--color-primary) r g b / .2);-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px);animation:ripple var(--duration) infinite ease-in-out}.loader .box:nth-child(1){top:40%;right:40%;bottom:40%;left:40%;z-index:99;border-color:rgb(from var(--color-primary) r g b / 1)}.loader .box:nth-child(2){top:30%;right:30%;bottom:30%;left:30%;z-index:98;border-color:rgb(from var(--color-primary) r g b / .8);animation-delay:.2s}.loader .box:nth-child(3){top:20%;right:20%;bottom:20%;left:20%;z-index:97;border-color:rgb(from var(--color-primary) r g b / .6);animation-delay:.4s}.loader .box:nth-child(4){top:10%;right:10%;bottom:10%;left:10%;z-index:96;border-color:rgb(from var(--color-primary) r g b / .4);animation-delay:.6s}.loader .box:nth-child(5){top:0%;right:0%;bottom:0%;left:0%;z-index:95;border-color:rgb(from var(--color-primary) r g b / .2);animation-delay:.8s}.loader .logo{position:absolute;top:0;right:0;bottom:0;left:0;display:grid;place-content:center;padding:30%;z-index:100}.loader .logo svg,.loader .logo img{width:100%;height:auto;filter:drop-shadow(0 0 10px rgb(from var(--color-primary) r g b / .5));animation:color-change var(--duration) infinite ease-in-out}@keyframes ripple{0%{transform:scale(1);box-shadow:0 5px 15px rgb(from var(--color-primary) r g b / .2);opacity:.8}50%{transform:scale(1.1);box-shadow:0 10px 25px rgb(from var(--color-primary) r g b / .4);opacity:1}to{transform:scale(1);box-shadow:0 5px 15px rgb(from var(--color-primary) r g b / .2);opacity:.8}}@keyframes color-change{0%{filter:drop-shadow(0 0 5px rgb(from var(--color-primary) r g b / .5));transform:scale(1)}50%{filter:drop-shadow(0 0 15px rgb(from var(--color-secondary) r g b / .8));transform:scale(1.05)}to{filter:drop-shadow(0 0 5px rgb(from var(--color-primary) r g b / .5));transform:scale(1)}}
|