Untitled
Chicky
plain_text
2 years ago
1.1 kB
9
Indexable
.products-container {
margin-top: 20px;
}
.search-add-container {
display: flex;
justify-content: space-between;
margin-bottom: 20px;
}
.search-container {
display: flex;
align-items: center;
}
.add-container {
display: flex;
align-items: center;
}
.add-product-fields {
display: flex;
margin-top: 10px;
}
.products-table {
width: 100%;
border-collapse: collapse;
}
.products-table, .products-table th, .products-table td {
border: 1px solid black;
}
.products-table th, .products-table td {
padding: 8px;
text-align: left;
}
.products-table th {
background-color: #f2f2f2;
}
.update-button, .delete-button, .add-button {
margin-right: 5px;
padding: 8px 16px;
border: none;
background-color: #4CAF50;
color: white;
cursor: pointer;
border-radius: 4px;
}
.add-button {
background-color: #008CBA;
}
.update-button:hover, .delete-button:hover, .add-button:hover {
background-color: #45a049;
}
.update-button:disabled, .delete-button:disabled {
background-color: #ccc;
cursor: not-allowed;
}
Editor is loading...
Leave a Comment