LeireTedCas commited on
Commit
364b578
1 Parent(s): c43dd4b

Update templates/instrumental_trauma.html

Browse files
Files changed (1) hide show
  1. templates/instrumental_trauma.html +80 -6
templates/instrumental_trauma.html CHANGED
@@ -3,15 +3,90 @@
3
  <head>
4
  <meta charset="utf-8">
5
  <title> Quirohelp </title>
6
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
 
8
  </head>
9
  <body>
10
  <div class="login22">
11
- <h2 style="font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;font-size: 3rem;background-color: darkcyan;"><img src="{{ user_image7 }}" alt="" style="max-width:5%;" onclick="location.href='/buscador_trauma'"> Traumatología</h2>
12
- <h3 style="padding-left: 80%;font-size: 1.2rem;" onclick="location.href='/ajustes'">AJUSTES <img src="{{ user_image6 }}" alt="" style="max-width:18%;" ></h3>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  <h2 style="font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman';font-size: 1.6rem;">{{title}} :</h2>
14
- <form action="{{url_for('resultado_trauma')}}" method="post">
 
15
  <br>
16
  <br>
17
 
@@ -35,7 +110,6 @@
35
  <br>
36
  <br>
37
 
38
-
39
- </div>
40
  </body>
41
  </html>
 
3
  <head>
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
+ .quiro {
16
+ background-color: blueviolet;
17
+ font-size: 3.5rem;
18
+ padding: 20px 0;
19
+ }
20
+ .login2 {
21
+ text-align: center;
22
+ padding: 20px;
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;
30
+ }
31
+ .element {
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 */
41
+ }
42
+ .text2 {
43
+ font-size: 24px; /* Tamaño de letra deseado */
44
+ }
45
+ /* Estilos para pantallas pequeñas (por ejemplo, hasta 768px) */
46
+ @media screen and (max-width: 768px) {
47
+ .quiro {
48
+ font-size: 2.5rem; /* Reducir el tamaño de la fuente */
49
+ }
50
+ input[type="button"] {
51
+ width: 100%; /* Ajustar el ancho al 100% para ocupar todo el ancho disponible */
52
+ }
53
+ }
54
+ /* Estilos para pantallas medianas y grandes (más de 768px) */
55
+ @media screen and (min-width: 769px) {
56
+ .quiro {
57
+ font-size: 3.5rem; /* Restablecer el tamaño de la fuente original */
58
+ }
59
+ }
60
+ </style>
61
 
62
  </head>
63
  <body>
64
  <div class="login22">
65
+ <!--<h2 style="font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;font-size: 3rem;background-color: darkcyan;"><img src="{{ user_image7 }}" alt="" style="max-width:5%;" onclick="location.href='/buscador_trauma'"> Traumatología</h2>
66
+ <h3 style="padding-left: 80%;font-size: 1.2rem;" onclick="location.href='/ajustes'">AJUSTES <img src="{{ user_image6 }}" alt="" style="max-width:18%;" ></h3>-->
67
+ <h2 style="font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; font-size: 3rem; background-color: darkcyan; max-width: 100%; overflow: hidden; display: flex; align-items: center;">
68
+ <div class="container">
69
+ <div class="element">
70
+ <img src="{{ user_image7 }}" alt="Atrás" onclick="location.href='/buscador_trauma'">
71
+ </div>
72
+ <div class="element">
73
+ <p class="text2">Volver</p>
74
+ </div>
75
+ <div class="element">
76
+ <p class="text">TRAUMATOLOGIA</p>
77
+ </div>
78
+ <div class="element">
79
+ <p class="text2">Ajustes</p>
80
+ </div>
81
+ <div class="element">
82
+ <img src="{{ user_image6 }}" alt="Config." onclick="location.href='/ajustes'">
83
+ </div>
84
+ </div>
85
+ </h2>
86
+ </div>
87
  <h2 style="font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman';font-size: 1.6rem;">{{title}} :</h2>
88
+
89
+ <form action="{{url_for('resultado_trauma')}}" method="post">
90
  <br>
91
  <br>
92
 
 
110
  <br>
111
  <br>
112
 
113
+
 
114
  </body>
115
  </html>