Compare commits
No commits in common. "beaeaaf969cabe03025728b11ee1cc07132d4137" and "8befc72f096f79ac2a2387cca23d7ea4fa7a6fcc" have entirely different histories.
beaeaaf969
...
8befc72f09
|
@ -1,55 +0,0 @@
|
||||||
*{
|
|
||||||
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;
|
|
||||||
}
|
|
|
@ -1,45 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<title>Registrar Paciente</title>
|
|
||||||
<link rel="stylesheet" href="registrarPaciente.css">
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div class="formulario">
|
|
||||||
<h2>Registrar Paciente</h2>
|
|
||||||
<form action= "" id="registrarPaciente">
|
|
||||||
<label for="nombre" class="campoTexto">Nombre:</label>
|
|
||||||
<input type="text" name="nombre" id="nombre">
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<label for="edad" class="edad">Edad:</label>
|
|
||||||
<input type="number" name="edad" id="edad">
|
|
||||||
|
|
||||||
<label for="peso" class="peso">Peso:</label>
|
|
||||||
<input type="number" name="peso" id="peso">
|
|
||||||
|
|
||||||
<label for="altura" class="altura">Altura:</label>
|
|
||||||
<input type="number" name="altura" id="altura">
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<label for="presionArterial" class="presion">Presión Arterial:</label>
|
|
||||||
<input type="number" name="presionArterial" id="presionArterial">
|
|
||||||
|
|
||||||
<label for="temperatura" class="temperatura">Temperatura:</label>
|
|
||||||
<input type="number" name="temperatura" id="temperatura">
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<label for="alergias" class="campoTexto">Alergias:</label>
|
|
||||||
<input type="text" name="alergias" id="alergias">
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<button type="submit" class="btnRegistar">Registrar</button>
|
|
||||||
<button class="btnCancelar">Cancelar</button>
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
Loading…
Reference in New Issue