From 5898c8cfa49c6c630581a00dbf5bf2fb08a681f7 Mon Sep 17 00:00:00 2001 From: Jay16Nair <141720451+Jay16Nair@users.noreply.github.com> Date: Wed, 13 Sep 2023 07:58:26 +0530 Subject: [PATCH] Delete packages.css --- packages.css | 157 --------------------------------------------------- 1 file changed, 157 deletions(-) delete mode 100644 packages.css diff --git a/packages.css b/packages.css deleted file mode 100644 index 72fad86..0000000 --- a/packages.css +++ /dev/null @@ -1,157 +0,0 @@ -header { - color: #050505; - padding: 20px; - text-align: center ; - } - -body { - font-family: "Oxygen", sans-serif; - color: #050505; - } - - *, - *::before, - *::after { - box-sizing: border-box; - } - - .main { - max-width: 1200px; - margin: 0 auto; - } - - .cards { - display: flex; - flex-wrap: wrap; - list-style: none; - margin: 0; - padding: 0; - } - - .cards_item { - display: flex; - padding: 1rem; - } - - .card_image { - position: relative; - max-height: 250px; - } - - .card_image img { - width: 100%; - height: 100%; - object-fit: cover; - } - - .card_price { - position: absolute; - bottom: 8px; - right: 8px; - display: flex; - justify-content: center; - align-items: center; - width: 45px; - height: 45px; - border-radius: 0.25rem; - background-color: #c89b3f; - font-size: 18px; - font-weight: 700; - } - - .card_price span { - font-size: 12px; - margin-top: -2px; - } - - .note { - position: absolute; - top: 8px; - left: 8px; - padding: 4px 8px; - border-radius: 0.25rem; - background-color: #c89b3f; - font-size: 14px; - font-weight: 700; - } - - @media (min-width: 40rem) { - .cards_item { - width: 50%; - } - } - - @media (min-width: 56rem) { - .cards_item { - width: 33.3333%; - } - } - - .card { - background-color: white; - border-radius: 0.25rem; - box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25); - display: flex; - flex-direction: column; - overflow: hidden; - } - - .card_content { - position: relative; - padding: 16px 12px 32px 24px; - margin: 16px 8px 8px 0; - max-height: 290px; - overflow-y: scroll; - } - - .card_content::-webkit-scrollbar { - width: 8px; - } - - .card_content::-webkit-scrollbar-track { - box-shadow: 0; - border-radius: 0; - } - - .card_content::-webkit-scrollbar-thumb { - background: #c89b3f; - border-radius: 15px; - } - - .card_title { - position: relative; - margin: 0 0 24px; - padding-bottom: 10px; - text-align: center; - font-size: 20px; - font-weight: 700; - } - - .card_title::after { - position: absolute; - display: block; - width: 50px; - height: 2px; - bottom: 0; - left: 50%; - transform: translateX(-50%); - background-color: #c89b3f; - content: ""; - } - - hr { - margin: 24px auto; - width: 50px; - border-top: 2px solid #c89b3f; - } - - .card_text p { - margin: 0 0 24px; - font-size: 14px; - line-height: 1.5; - } - - .card_text p:last-child { - margin: 0; - } - \ No newline at end of file