JPLTedCas commited on
Commit
4249730
1 Parent(s): 183bf14

Update templates/especialidad.html

Browse files
Files changed (1) hide show
  1. templates/especialidad.html +25 -14
templates/especialidad.html CHANGED
@@ -4,33 +4,44 @@
4
  <meta charset="utf-8">
5
  <title>Quirohelp</title>
6
  <style>
 
 
 
 
 
 
 
 
 
7
  .quiro {
8
  background-color: blueviolet;
9
- color: white;
10
  font-size: 3.5rem;
11
- font-family: Georgia, 'Times New Roman', Times, serif;
12
  }
13
 
14
  .login2 {
15
  text-align: center;
 
16
  }
17
 
18
  /* Estilos para pantallas pequeñas (por ejemplo, hasta 768px) */
19
  @media screen and (max-width: 768px) {
20
  .quiro {
21
- font-size: 2.5rem; /* Reducir el tamaño de la fuente */
22
  }
 
23
 
24
- input[type="button"] {
25
- width: 100%; /* Ajustar el ancho al 100% para ocupar todo el ancho disponible */
26
- }
 
 
 
 
27
  }
28
 
29
- /* Estilos para pantallas medianas y grandes (más de 768px) */
30
- @media screen and (min-width: 769px) {
31
- .quiro {
32
- font-size: 3.5rem; /* Restablecer el tamaño de la fuente original */
33
- }
34
  }
35
  </style>
36
  </head>
@@ -39,13 +50,13 @@
39
  <h1 class="quiro"><img src="{{ user_image0 }}" alt="holaaa" style="max-width: 5%;"> QuiroHelp </h1>
40
  <p style="font-size: 1.1rem">Haz click en tu especialidad:</p>
41
  <form action="{{url_for('especialidad')}}" method="post">
42
- <input class="" type="button" value="Traumatologia" style="background-color: darkcyan; font-size: 2.5rem;">
43
  <h3></h3><img src="{{ user_image1 }}" alt="" style="max-width: 100%">
44
  <br>
45
- <input type="button" value="Urologia" style="background-color: saddlebrown; font-size: 2.5rem;">
46
  <h3></h3><img src="{{ user_image2 }}" alt="" style="max-width: 100%">
47
  <br>
48
- <input type="button" value="Admisión" style="background-color: dimgray; font-size: 2.5rem;">
49
  <h3></h3><img src="{{ user_image3 }}" alt="" style="max-width: 100%">
50
  </form>
51
  </div>
 
4
  <meta charset="utf-8">
5
  <title>Quirohelp</title>
6
  <style>
7
+ body {
8
+ background-color: #333; /* Fondo oscuro */
9
+ color: #fff; /* Texto blanco */
10
+ font-family: Georgia, 'Times New Roman', Times, serif;
11
+ margin: 0;
12
+ padding: 0;
13
+ text-align: center;
14
+ }
15
+
16
  .quiro {
17
  background-color: blueviolet;
 
18
  font-size: 3.5rem;
19
+ padding: 20px 0;
20
  }
21
 
22
  .login2 {
23
  text-align: center;
24
+ padding: 20px;
25
  }
26
 
27
  /* Estilos para pantallas pequeñas (por ejemplo, hasta 768px) */
28
  @media screen and (max-width: 768px) {
29
  .quiro {
30
+ font-size: 2.5rem;
31
  }
32
+ }
33
 
34
+ input[type="button"] {
35
+ width: 78%;
36
+ background-color: #3498db;
37
+ color: #fff;
38
+ font-size: 2.5rem;
39
+ margin: 10px 0;
40
+ padding: 15px;
41
  }
42
 
43
+ img {
44
+ max-width: 100%;
 
 
 
45
  }
46
  </style>
47
  </head>
 
50
  <h1 class="quiro"><img src="{{ user_image0 }}" alt="holaaa" style="max-width: 5%;"> QuiroHelp </h1>
51
  <p style="font-size: 1.1rem">Haz click en tu especialidad:</p>
52
  <form action="{{url_for('especialidad')}}" method="post">
53
+ <input type="button" value="Traumatologia" onclick="location.href='/buscador_trauma'">
54
  <h3></h3><img src="{{ user_image1 }}" alt="" style="max-width: 100%">
55
  <br>
56
+ <input type="button" value="Urologia" onclick="location.href='/buscador_uro'">
57
  <h3></h3><img src="{{ user_image2 }}" alt="" style="max-width: 100%">
58
  <br>
59
+ <input type="button" value="Admisión" onclick="location.href='/buscador_admision'">
60
  <h3></h3><img src="{{ user_image3 }}" alt="" style="max-width: 100%">
61
  </form>
62
  </div>