From c4b6b65e43c0e18ef686027317aaf3372ab2c85e Mon Sep 17 00:00:00 2001 From: "maria.ruiz" <zs22016128@estudiantes.uv.mx> Date: Thu, 13 Mar 2025 06:25:56 +0000 Subject: [PATCH] Actualizar Interfaz/estilos/modals.css --- Interfaz/estilos/modal.css | 46 ------------------------------------- Interfaz/estilos/modals.css | 45 ++++++++++++++++++++++++++++++++++++ 2 files changed, 45 insertions(+), 46 deletions(-) delete mode 100644 Interfaz/estilos/modal.css create mode 100644 Interfaz/estilos/modals.css diff --git a/Interfaz/estilos/modal.css b/Interfaz/estilos/modal.css deleted file mode 100644 index 16746dd..0000000 --- a/Interfaz/estilos/modal.css +++ /dev/null @@ -1,46 +0,0 @@ -/* Estilos para el modal */ -.modal { - display: none; - position: fixed; - z-index: 1000; - left: 0; - top: 0; - width: 100%; - height: 100%; - background-color: rgba(0, 0, 0, 0.5); -} - -.modal-content { - background-color: #fff; - margin: 10% auto; - padding: 20px; - border: 1px solid #ccc; - width: 80%; - max-width: 500px; -} - -.close { - float: right; - cursor: pointer; -} - -.botones { - margin-top: 20px; - text-align: center; -} - -.confirmar { - background-color: green; - color: white; - padding: 10px 20px; - border: none; - cursor: pointer; -} - -.rechazar { - background-color: red; - color: white; - padding: 10px 20px; - border: none; - cursor: pointer; -} \ No newline at end of file diff --git a/Interfaz/estilos/modals.css b/Interfaz/estilos/modals.css new file mode 100644 index 0000000..0195020 --- /dev/null +++ b/Interfaz/estilos/modals.css @@ -0,0 +1,45 @@ +.modal { + display: none; + position: fixed; + z-index: 1000; + left: 0; + top: 0; + width: 100%; + height: 100%; + background-color: rgba(0, 0, 0, 0.5); +} + +.modal-content { + background-color: #fff; + margin: 10% auto; + padding: 20px; + border: 1px solid #ccc; + width: 80%; + max-width: 500px; +} + +.close { + float: right; + cursor: pointer; +} + +.botones { + margin-top: 20px; + text-align: center; +} + +.confirmar { + background-color: green; + color: white; + padding: 10px 20px; + border: none; + cursor: pointer; +} + +.rechazar { + background-color: red; + color: white; + padding: 10px 20px; + border: none; + cursor: pointer; +} \ No newline at end of file