feat: integrate hospital management module with advanced UI styling and analytics components
This commit is contained in:
@@ -1,9 +1,8 @@
|
||||
.launcher-page {
|
||||
height: 100vh;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
background: #020617;
|
||||
color: #f8fafc;
|
||||
min-height: 100vh;
|
||||
background: var(--hull-dark-l);
|
||||
background-color: hsl(var(--hull-dark-h), var(--hull-dark-s), 4%);
|
||||
color: #fff;
|
||||
font-family: 'Inter', system-ui, sans-serif;
|
||||
position: relative;
|
||||
display: flex;
|
||||
@@ -27,74 +26,37 @@
|
||||
background: rgba(59, 130, 246, 0.4);
|
||||
}
|
||||
|
||||
/* Background Effects */
|
||||
/* Background Effects - Clean Clinical Finish */
|
||||
.launcher-bg {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
z-index: 0;
|
||||
overflow: hidden;
|
||||
background: hsl(var(--hull-dark-h), var(--hull-dark-s), 2%);
|
||||
}
|
||||
|
||||
.launcher-grid {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
background-image:
|
||||
linear-gradient(to right, rgba(59, 130, 246, 0.05) 1px, transparent 1px),
|
||||
linear-gradient(to bottom, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
|
||||
background-size: 50px 50px;
|
||||
mask-image: radial-gradient(circle at center, black, transparent 80%);
|
||||
}
|
||||
|
||||
.launcher-blob {
|
||||
position: absolute;
|
||||
width: 500px;
|
||||
height: 500px;
|
||||
filter: blur(100px);
|
||||
opacity: 0.15;
|
||||
border-radius: 50%;
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
.blob-1 {
|
||||
top: -100px;
|
||||
left: -100px;
|
||||
background: #3b82f6;
|
||||
animation: float 20s infinite alternate;
|
||||
}
|
||||
|
||||
.blob-2 {
|
||||
bottom: -100px;
|
||||
right: -100px;
|
||||
background: #8b5cf6;
|
||||
animation: float 25s infinite alternate-reverse;
|
||||
}
|
||||
|
||||
.blob-3 {
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
background: #10b981;
|
||||
width: 300px;
|
||||
height: 300px;
|
||||
opacity: 0.05;
|
||||
}
|
||||
|
||||
@keyframes float {
|
||||
from { transform: translate(0, 0); }
|
||||
to { transform: translate(100px, 50px); }
|
||||
linear-gradient(to right, hsla(var(--accent-cyan-h), 100%, 50%, 0.015) 1px, transparent 1px),
|
||||
linear-gradient(to bottom, hsla(var(--accent-cyan-h), 100%, 50%, 0.015) 1px, transparent 1px);
|
||||
background-size: 80px 80px;
|
||||
mask-image: radial-gradient(circle at 0% 0%, black, transparent 100%);
|
||||
}
|
||||
|
||||
/* Header */
|
||||
.launcher-header {
|
||||
position: relative;
|
||||
z-index: 10;
|
||||
padding: 24px 40px;
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 100;
|
||||
padding: 20px 40px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
|
||||
background: rgba(2, 6, 23, 0.5);
|
||||
backdrop-filter: blur(10px);
|
||||
border-bottom: 1px solid hsla(0, 0%, 100%, 0.05);
|
||||
background: hsla(220, 30%, 5%, 0.8);
|
||||
backdrop-filter: blur(20px);
|
||||
}
|
||||
|
||||
.launcher-brand {
|
||||
@@ -227,17 +189,22 @@
|
||||
/* Cards */
|
||||
.portal-card {
|
||||
position: relative;
|
||||
background: rgba(15, 23, 42, 0.6);
|
||||
border: 1px solid rgba(255, 255, 255, 0.05);
|
||||
border-radius: 24px;
|
||||
background: hsla(220, 30%, 10%, 0.4);
|
||||
border: 1px solid hsla(0, 0%, 100%, 0.05);
|
||||
border-radius: 28px;
|
||||
padding: 32px;
|
||||
cursor: pointer;
|
||||
overflow: hidden;
|
||||
transition: border-color 0.3s;
|
||||
transition: var(--transition-snappy);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.portal-card:hover {
|
||||
border-color: var(--accent-color);
|
||||
background: hsla(220, 30%, 15%, 0.6);
|
||||
transform: translateY(-8px);
|
||||
box-shadow: 0 30px 60px -12px hsla(0, 0%, 0%, 0.5);
|
||||
}
|
||||
|
||||
.portal-card-glow {
|
||||
@@ -246,14 +213,14 @@
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background: radial-gradient(circle at top right, var(--accent-color), transparent 70%);
|
||||
background: radial-gradient(circle at top right, var(--accent-color), transparent 60%);
|
||||
opacity: 0;
|
||||
transition: opacity 0.3s;
|
||||
transition: opacity 0.4s;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.portal-card:hover .portal-card-glow {
|
||||
opacity: 0.1;
|
||||
opacity: 0.15;
|
||||
}
|
||||
|
||||
.portal-card-inner {
|
||||
@@ -285,18 +252,21 @@
|
||||
}
|
||||
|
||||
.portal-subtitle {
|
||||
font-size: 0.75rem;
|
||||
font-weight: 800;
|
||||
letter-spacing: 0.1em;
|
||||
font-size: 0.65rem;
|
||||
font-weight: 950;
|
||||
letter-spacing: 0.15em;
|
||||
color: var(--accent-color);
|
||||
filter: brightness(1.2);
|
||||
margin-bottom: 8px;
|
||||
display: block;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.portal-title {
|
||||
font-size: 1.5rem;
|
||||
font-weight: 800;
|
||||
font-size: 1.6rem;
|
||||
font-weight: 900;
|
||||
margin: 0 0 12px 0;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.portal-description {
|
||||
@@ -399,21 +369,20 @@
|
||||
color: #f8fafc;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.launcher-main-title {
|
||||
font-size: 2.5rem;
|
||||
}
|
||||
.portal-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
.launcher-header {
|
||||
padding: 16px 20px;
|
||||
}
|
||||
.launcher-content {
|
||||
padding: 40px 20px;
|
||||
}
|
||||
.footer-info {
|
||||
gap: 20px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
@media (max-width: 1024px) {
|
||||
.launcher-main-title { font-size: 3rem; }
|
||||
.portal-grid { grid-template-columns: repeat(2, 1fr); }
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.launcher-header { padding: 16px 20px; }
|
||||
.launcher-actions { display: none; }
|
||||
.launcher-main-title { font-size: 2.2rem; }
|
||||
.launcher-intro { margin-bottom: 40px; }
|
||||
.portal-grid { grid-template-columns: 1fr; gap: 16px; }
|
||||
.launcher-content { padding: 40px 20px; }
|
||||
.portal-card { padding: 24px; }
|
||||
.footer-info { gap: 20px; flex-direction: column; align-items: center; text-align: center; }
|
||||
.footer-links { justify-content: center; width: 100%; margin-top: 24px; }
|
||||
.launcher-footer { flex-direction: column; gap: 24px; padding: 40px 20px; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user