Gitlab@Informatics

Skip to content
Snippets Groups Projects
Select Git revision
  • dff3d15627e83393d61c18b7a0b32f96bafc6f08
  • main default protected
  • revert-a98119d8
3 results

home.css

Blame
  • home.css 2.36 KiB
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: 'Roboto', sans-serif;
        background-color: #f4f6f9;
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: 100vh;
    }
    
    button {
        width: 100%;
        padding: 15px;
        background-color: #ff7e5f;
        color: white;
        font-size: 18px;
        font-weight: 500;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    /* Header */
    header {
        width: 100%;
        padding: 15px 30px;
        background-color: #ff7e5f;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    
    header .logo h1 {
        color: white;
        font-size: 28px;
        font-weight: 700;
    }
    
    header .search-bar input {
        padding: 8px 15px;
        font-size: 16px;
        border-radius: 20px;
        border: none;
        width: 300px;
    }
    
    header .cart a,
    header .logout a,
    header .edit-order-btn {
        color: white;
        font-size: 16px;
        margin-left: 20px;
        text-decoration: none;
    }
    
    header .user-info {
        display: flex;
        align-items: center;
    }
    
    /* Products Section */
    .products {
        display: grid;