diff --git a/styles.css b/styles.css deleted file mode 100644 index 3e38810..0000000 --- a/styles.css +++ /dev/null @@ -1,43 +0,0 @@ -/* Password Prompt Modal */ -div.password-prompt-container { - display: flex; - flex-direction: column; - align-items: center; - justify-content: center; - height: 100%; - background-image: url('path/to/background-image.jpg'); /* Replace with the path to your background image */ - background-size: cover; - background-position: center; -} - -.password-prompt-content-container { - background-color: rgba(255, 255, 255, 0.8); - padding: 1.5rem; - border-radius: 8px; - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); -} - -.password-prompt-heading { - margin-bottom: 1rem; - font-size: 1.5rem; - text-align: center; - color: #F7E6C4; -} - -.password-prompt-input { - width: 250px; - padding: 0.5rem; - margin-bottom: 1rem; - border: 1px solid #ccc; - border-radius: 4px; - outline: none; -} - -.password-prompt-button { - padding: 0.5rem 1rem; - background-color: #555; - color: #F7E6C4; - border: none; - border-radius: 4px; -} -