Untitled

 avatar
unknown
plain_text
10 months ago
1.5 kB
2
Indexable
/* Styles for navigation bar */
.nav-bar {
    display: flex;
    justify-content: space-between;
    background-color: #333;
    padding: 10px;
  }
  
  .nav-bar button {
    background-color: transparent;
    color: white;
    border: none;
    cursor: pointer;
  }
  
  /* Styles for product grid */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .product-card {
    border: 1px solid #ccc;
    padding: 10px;
  }
  
  .product-card img {
    max-width: 100%;
    height: auto;
  }
  
  /* Styles for pagination */
  .pagination {
    margin-top: 20px;
  }
  
  .pagination button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 5px 10px;
    margin-right: 5px;
    cursor: pointer;
  }
  
  .pagination button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
  }
  
  /* Styles for shopping cart */
  .shopping-cart {
    margin-top: 20px;
  }
  
  .shopping-cart h2 {
    color: #333;
  }
  
  .shopping-cart ul {
    list-style-type: none;
    padding: 0;
  }
  
  .shopping-cart li {
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 10px;
  }
  
  .shopping-cart li img {
    max-width: 100px;
    height: auto;
  }
  
  .shopping-cart li button {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
  }
  
Editor is loading...
Leave a Comment