System
Label Value Edit
Version 2.7.6
Language English (English)
Support Discord | Github | Blog
Donate Paypal
Appearance
Label Value Edit
Background Image - not set -
Trianglify No
Trianglify Random Seed heimdall
Treat Tags As: Folders
Miscellaneous
Label Value Edit
Homepage Search No
Default Search Provider Google
Link opens in Open in a new tab
Advanced
Label Value Edit
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) */
.
Custom JavaScript
// --- 3D Tilt Effect for Heimdall Items ---

document.addEventListener("DOMContentLoaded", function() {
    const cards = document.querySelectorAll('.item');

    cards.forEach(card => {
        card.addEventListener('mousemove', (e) => {
            const rect = card.getBoundingClientRect();
            const x = e.clientX - rect.left;
            const y = e.clientY - rect.top;
            
            // Calculate center
            const centerX = rect.width / 2;
            const centerY = rect.height / 2;
            
            // Calculate rotation (Max 15 degrees)
            const rotateX = ((y - centerY) / centerY) * -15; 
            const rotateY = ((x - centerX) / centerX) * 15;

            // Apply the transformation
            card.style.transform = `perspective(1000px) rotateX(${rotateX}deg) rotateY(${rotateY}deg) scale(1.05)`;
        });

        // Reset on mouse leave
        card.addEventListener('mouseleave', () => {
            card.style.transform = 'perspective(1000px) rotateX(0) rotateY(0) scale(1)';
        });
    });
});