| Custom CSS |
/* --- Modern Glassmorphism Theme --- */
/* Smooth out the fonts */
body {
font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
}
/* Target the App Cards (Items) */
.item {
/* Glass Effect */
background: rgba(20, 20, 20, 0.4) !important; /* Dark semi-transparent */
backdrop-filter: blur(12px) saturate(180%);
-webkit-backdrop-filter: blur(12px) saturate(180%);
/* Border and Shape */
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 16px !important;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
/* Transitions */
transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
overflow: hidden;
}
/* Hover State - The "Cool" Factor */
.item:hover {
background: rgba(40, 40, 40, 0.6) !important;
border-color: rgba(255, 255, 255, 0.4);
box-shadow: 0 0 20px rgba(255, 255, 255, 0.2),
0 10px 20px rgba(0,0,0,0.4);
transform: translateY(-5px) scale(1.02);
z-index: 10;
}
/* App Title Styling */
.item .title {
font-weight: 700;
letter-spacing: 0.5px;
text-transform: uppercase;
font-size: 0.85rem;
color: rgba(255, 255, 255, 0.9) !important;
text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}
/* Sidebar Polish */
#sidebar {
background: rgba(0, 0, 0, 0.5);
backdrop-filter: blur(10px);
}
/* Search Bar (if you use it) */
.
|
|