From 1a257664f5f590a61f324fe87469d9d7a02230d6 Mon Sep 17 00:00:00 2001
From: Tiago Brito <69848652+britotiago03@users.noreply.github.com>
Date: Fri, 10 May 2024 05:15:08 +0200
Subject: [PATCH] Implemented Cart.css

---
 frontend/src/css/Cart.css | 64 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 64 insertions(+)
 create mode 100644 frontend/src/css/Cart.css

diff --git a/frontend/src/css/Cart.css b/frontend/src/css/Cart.css
new file mode 100644
index 0000000..dbbca5f
--- /dev/null
+++ b/frontend/src/css/Cart.css
@@ -0,0 +1,64 @@
+.cart-container {
+    width: 100%;
+    padding: 20px;
+    box-sizing: border-box;
+}
+
+.cart-container-list {
+    display: flex;
+    flex-direction: column;
+    align-items: baseline;
+    gap: 20px;
+}
+
+.cart-item {
+    display: flex;
+    align-items: center;
+    border-bottom: 1px solid #ddd;
+    padding-bottom: 10px;
+    margin-bottom: 20px;
+}
+
+.cart-item img {
+    margin-right: 20px;
+}
+
+.cart-item div {
+    flex-grow: 1;
+}
+
+.cart-item h3 {
+    margin: 0;
+    color: #333;
+}
+
+.cart-item p {
+    margin: 5px 0;
+}
+
+input[type="number"] {
+    width: 60px;
+    padding: 8px;
+    margin-left: 10px;
+    border: 1px solid #ccc;
+    border-radius: 4px;
+}
+
+.cart-container button {
+    background-color: #007BFF;
+    color: white;
+    border: none;
+    padding: 10px 20px;
+    margin-top: 10px;
+    cursor: pointer;
+    border-radius: 5px;
+    transition: background-color 0.3s ease;
+}
+
+.cart-container button:hover {
+    background-color: #0056b3;
+}
+
+h1 {
+    color: #333;
+}
-- 
GitLab