Gitlab@Informatics

Skip to content
Snippets Groups Projects
Select Git revision
  • 17c04b01622dfb5db2e237f54f0f7bf4d9f22452
  • main default protected
  • master
3 results

style.css

Blame
  • style.css 8.89 KiB
    :root {
        --primary-color: #5389fe;
        --secondary-color: #4a46cc;
        --hover-color: #d6bcfa;
        --success-color: #4CAF50;
        --danger-color: #ff4d4d;
        --background-color: #f7f3fc;
        --text-color: #2d3748;
        --border-color: #e2e8f0;
        --shadow-color: rgba(107, 70, 193, 0.15);
    }
    
    /* Reset */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: Arial, sans-serif;
        line-height: 1.6;
        background-color: var(--background-color);
        color: var(--text-color);
    }
    
    .container {
        max-width: 1420px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    /* Navigation */
    nav {
        background-color: var(--primary-color);
        color: white;
        padding: 1rem 0;
    }
    
    nav .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-links {
        display: flex;
        gap: 1rem;
        align-items: center;
    }
    
    .nav-link {
        color: white;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .nav-link:hover {
        color: var(--hover-color);
    }
    
    .logo {
        font-size: 30px;
        font-weight: bold;
        text-decoration: none;
        color: white;
        margin-right: 30px;
    }
    
    .cart-link {