From 1750dec94adf9857e95ed9c6810d4d0d62745755 Mon Sep 17 00:00:00 2001 From: David Date: Sun, 28 Apr 2024 19:51:59 -0600 Subject: [PATCH] Registrar Paciente --- healthmanager/src/registrarPaciente.css | 55 ++++++++++++++++++++++++ healthmanager/src/registrarPaciente.html | 45 +++++++++++++++++++ 2 files changed, 100 insertions(+) create mode 100644 healthmanager/src/registrarPaciente.css create mode 100644 healthmanager/src/registrarPaciente.html diff --git a/healthmanager/src/registrarPaciente.css b/healthmanager/src/registrarPaciente.css new file mode 100644 index 0000000..a10cb26 --- /dev/null +++ b/healthmanager/src/registrarPaciente.css @@ -0,0 +1,55 @@ +*{ + font-family:'Times New Roman', Times, serif; + box-sizing: border-box; +} +.formulario{ + align-items: center; + justify-content:center; + margin: 0 auto; + background-color: #afc0f5; + height: fit-content; + width: 400px; + border-radius: 20px; + padding-top: 10px; + gap: 25px; + flex: 1 1 300px; + margin-bottom: 25px; + overflow: hidden; +} + +label{ + margin-left: 30px; + margin-bottom: 30px; +} + +input[type="number"]{ + width: 45px; +} + +input{ + border-radius: 10%; + border: 1px grey; + margin-bottom: 10px; +} + +button{ + background-color: rgb(123, 123, 248); + border-radius: 10%; + font-size: 18px; + border: 1px grey; + color:white; + margin-left: 30px; + margin-top: 20px; + margin-bottom: 30px; + padding: 5px 10px; +} + +.btnCancelar{ + background-color: red; + margin-left: 160px; +} + +h2 { + margin-bottom: 30px; + text-align: center; +} \ No newline at end of file diff --git a/healthmanager/src/registrarPaciente.html b/healthmanager/src/registrarPaciente.html new file mode 100644 index 0000000..91421a3 --- /dev/null +++ b/healthmanager/src/registrarPaciente.html @@ -0,0 +1,45 @@ + + + + + + Registrar Paciente + + + +
+

Registrar Paciente

+
+ + + +
+ + + + + + + + +
+ +
+ + + + + +
+ + + + +
+ + +
+
+
+ + \ No newline at end of file