LeireTedCas commited on
Commit
8dd16fc
1 Parent(s): b555dac

Update templates/buscador_uro.html

Browse files
Files changed (1) hide show
  1. templates/buscador_uro.html +30 -20
templates/buscador_uro.html CHANGED
@@ -23,7 +23,7 @@
23
  }
24
  .container {
25
  display: grid;
26
- grid-template-columns: repeat(5, 1fr);
27
  grid-template-rows: 1fr;
28
  grid-gap: 10px;
29
  align-items: center;
@@ -32,9 +32,15 @@
32
  text-align: center;
33
  max-height: 100%;
34
  }
35
- img {
36
  max-width: 15%;
37
  height: auto;
 
 
 
 
 
 
38
  }
39
  .text {
40
  font-size: 36px; /* Tamaño de letra deseado */
@@ -67,21 +73,25 @@
67
  <hr/> -->
68
  <h2 style="font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; font-size: 3rem; background-color: saddlebrown; max-width: 100%; overflow: hidden; display: flex; align-items: center;">
69
  <div class="container">
70
- <div class="element">
71
- <img src="{{ user_image7 }}" alt="Atrás" onclick="location.href='/especialidad'">
72
- </div>
73
- <div class="element">
 
 
 
 
74
  <p class="text2">Volver</p>
75
- </div>
76
  <div class="element">
77
  <p class="text">UROLOGÍA</p>
78
  </div>
79
- <div class="element">
80
  <p class="text2">Ajustes</p>
81
- </div>
82
- <div class="element">
83
- <img src="{{ user_image6 }}" alt="Config." onclick="location.href='/ajustes'">
84
- </div>
85
  </div>
86
  </h2>
87
  </div>
@@ -94,7 +104,7 @@
94
  <br>-->
95
  <div class="input-container">
96
  <input type="search" name="busqueda" placeholder="Escriba aquí la búsqueda a realizar" style="box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2); width: 80%; border: 3px solid black; border-radius: 10px; font-size: 1.5rem; height: 50px;" required="required">
97
- <button type="submit" class="btn btn-primary btn-block btn-large" style="padding-bottom: 1%; width: 50px; background-color: rgb(0, 128, 255); border: 1px solid white; border-radius: 30%; box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2); height: 50px;"><img src="{{ user_image4 }}" alt="" style="max-width: 100%; height: 100%; padding-bottom: 0.5%;"></button>
98
  </div>
99
  <b style="font-size: 1.2rem;font-family: Arial, Helvetica, sans-serif;">{{prediction_text}}</b>
100
 
@@ -121,26 +131,26 @@
121
  <table id="miTabla" style="border-collapse: collapse; border: none;">
122
  <tr>
123
  <td>
124
- <img src="{{ user_image8 }}" style="max-width:70%;" onclick="location.href='/pdf_casa_uro?link2={{nid2}}'">
125
  </td>
126
  <td>
127
- <img src="{{ user_image9 }}" style="max-width:70%;" onclick="location.href='/protocolos_uro?link2={{nid2}}'">
128
  </td>
129
  <td>
130
- <img src="{{ user_image10 }}" style="max-width:70%;" onclick="location.href='/guia_visual_uro?link2={{nid2}}'">
131
  </td>
132
  </tr>
133
  <tr>
134
  <td>
135
- <img src="{{ user_image11 }}" style="max-width:70%;" onclick="location.href='/videos_uro?link2={{nid2}}'">
136
  </td>
137
  <td>
138
- <img src="{{ user_image12 }}" style="max-width:70%;" onclick="location.href='/materiales_uro?link2={{nid2}}'">
139
  </td>
140
  <td>
141
- <img src="{{ preguntas_respuestas }}" style="max-width:60%;" onclick="location.href='/preguntas_respuestas_uro?link2={{nid2}}'">
142
  <br />
143
- <img src="{{ user_image5 }}" style="max-width:60%;border-radius: 100%;box-shadow:2px 2px 2px 1px rgba(0, 0, 0, 0.2);" onclick="location.href='/escuchar_uro1'">
144
  </td>
145
  </tr>
146
  </table>
 
23
  }
24
  .container {
25
  display: grid;
26
+ grid-template-columns: 1fr 3fr 1fr;
27
  grid-template-rows: 1fr;
28
  grid-gap: 10px;
29
  align-items: center;
 
32
  text-align: center;
33
  max-height: 100%;
34
  }
35
+ .img1 {
36
  max-width: 15%;
37
  height: auto;
38
+ cursor: pointer;
39
+ }
40
+ .img2 {
41
+ max-width: 75%;
42
+ height: auto;
43
+ cursor: pointer;
44
  }
45
  .text {
46
  font-size: 36px; /* Tamaño de letra deseado */
 
73
  <hr/> -->
74
  <h2 style="font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; font-size: 3rem; background-color: saddlebrown; max-width: 100%; overflow: hidden; display: flex; align-items: center;">
75
  <div class="container">
76
+ <script>
77
+ function retroceder() {
78
+ history.back();
79
+ }
80
+ </script>
81
+ <img class="img2" src="{{ user_image7 }}" alt="Atrás" onclick="retroceder()" style="cursor: pointer;">
82
+
83
+ <!--<div class="element">
84
  <p class="text2">Volver</p>
85
+ </div>-->
86
  <div class="element">
87
  <p class="text">UROLOGÍA</p>
88
  </div>
89
+ <!--<div class="element">
90
  <p class="text2">Ajustes</p>
91
+ </div>-->
92
+
93
+ <img class="img2" src="{{ user_image6 }}" alt="Config." onclick="location.href='/ajustes'" style="cursor: pointer;">
94
+
95
  </div>
96
  </h2>
97
  </div>
 
104
  <br>-->
105
  <div class="input-container">
106
  <input type="search" name="busqueda" placeholder="Escriba aquí la búsqueda a realizar" style="box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2); width: 80%; border: 3px solid black; border-radius: 10px; font-size: 1.5rem; height: 50px;" required="required">
107
+ <button type="submit" class="btn btn-primary btn-block btn-large" style="padding-bottom: 1%; width: 50px; background-color: rgb(0, 128, 255); border: 1px solid white; border-radius: 30%; box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2); height: 50px; vertical-align: middle;"><img src="{{ user_image4 }}" alt="" style="max-width: 100%; height: 100%; padding-bottom: 0.5%;"></button>
108
  </div>
109
  <b style="font-size: 1.2rem;font-family: Arial, Helvetica, sans-serif;">{{prediction_text}}</b>
110
 
 
131
  <table id="miTabla" style="border-collapse: collapse; border: none;">
132
  <tr>
133
  <td>
134
+ <img class="img1" src="{{ user_image8 }}" style="max-width:70%;" onclick="location.href='/pdf_casa_uro?link2={{nid2}}'">
135
  </td>
136
  <td>
137
+ <img class="img1" src="{{ user_image9 }}" style="max-width:70%;" onclick="location.href='/protocolos_uro?link2={{nid2}}'">
138
  </td>
139
  <td>
140
+ <img class="img1" src="{{ user_image10 }}" style="max-width:70%;" onclick="location.href='/guia_visual_uro?link2={{nid2}}'">
141
  </td>
142
  </tr>
143
  <tr>
144
  <td>
145
+ <img class="img1" src="{{ user_image11 }}" style="max-width:70%;" onclick="location.href='/videos_uro?link2={{nid2}}'">
146
  </td>
147
  <td>
148
+ <img class="img1" src="{{ user_image12 }}" style="max-width:70%;" onclick="location.href='/materiales_uro?link2={{nid2}}'">
149
  </td>
150
  <td>
151
+ <img class="img1" src="{{ preguntas_respuestas }}" style="max-width:60%;" onclick="location.href='/preguntas_respuestas_uro?link2={{nid2}}'">
152
  <br />
153
+ <img class="img1" src="{{ user_image5 }}" style="max-width:60%;border-radius: 100%;box-shadow:2px 2px 2px 1px rgba(0, 0, 0, 0.2);" onclick="location.href='/escuchar_uro1'">
154
  </td>
155
  </tr>
156
  </table>