From cc412a67a84fd6731c00140bb6de1e5ebfd187a0 Mon Sep 17 00:00:00 2001 From: TheYmirsCla Date: Thu, 31 Oct 2024 00:15:01 -0400 Subject: [PATCH] Delete css/popup.css --- css/popup.css | 81 --------------------------------------------------- 1 file changed, 81 deletions(-) delete mode 100644 css/popup.css diff --git a/css/popup.css b/css/popup.css deleted file mode 100644 index 6c3ef26..0000000 --- a/css/popup.css +++ /dev/null @@ -1,81 +0,0 @@ -body { - font-family: 'Arial', sans-serif; - background-color: #f4f4f4; - margin: 0; - padding: 0; - text-align: center; - display: flex; - flex-direction: column; - min-height: 100vh; -} - -.modal { - display: none; - position: fixed; - z-index: 1; - left: 0; - top: 0; - width: 100%; - height: 100%; - background-color: rgba(0, 0, 0, 0.5); - justify-content: center; - align-items: center; -} - -.modal-content { - background-color: white; - padding: 20px; - border-radius: 10px; - width: 80%; - max-width: 400px; - text-align: center; - box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); -} - -.modal h2 { - color: #333; -} - -.modal p { - color: #555; - margin-bottom: 20px; -} - -.modal button { - background-color: #4caf50; - color: white; - padding: 10px 20px; - font-size: 16px; - cursor: pointer; - border: none; - border-radius: 5px; - margin: 5px; -} - -.modal button.cancel-btn { - background-color: #f44336; -} - -.modal button:hover { - background-color: #45a049; -} - -.modal button.cancel-btn:hover { - background-color: #e53935; -} - -.copy-link { - background-color: #f4f4f4; - padding: 10px; - border: 1px solid #ddd; - border-radius: 5px; - margin-bottom: 15px; -} - -.copy-btn { - background-color: #9656ce; -} - -.copy-btn:hover { - background-color: #5b209a; -}