LeireTedCas commited on
Commit
e2c2b77
1 Parent(s): b736a8a

Update templates/escuchar_trauma1.html

Browse files
Files changed (1) hide show
  1. templates/escuchar_trauma1.html +62 -59
templates/escuchar_trauma1.html CHANGED
@@ -4,7 +4,7 @@
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;
@@ -21,6 +21,43 @@
21
  text-align: center;
22
  padding: 20px;
23
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  /* Estilos para pantallas pequeñas (por ejemplo, hasta 768px) */
25
  @media screen and (max-width: 768px) {
26
  .quiro {
@@ -36,69 +73,35 @@
36
  font-size: 3.5rem; /* Restablecer el tamaño de la fuente original */
37
  }
38
  }
39
- h2, h3 {
40
- color: #fff; /* Texto blanco */
41
- }
42
- h2 {
43
- font-size: 3rem;
44
- background-color: #008b8b; /* Color de fondo */
45
- display: flex;
46
- align-items: center;
47
- }
48
- h3 {
49
- font-size: 1.2rem;
50
- padding-left: 80%;
51
- }
52
- button {
53
- font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman';
54
- font-size: 1.2rem;
55
- background-color: white;
56
- border: solid white;
57
- display: flex;
58
- align-items: center;
59
- justify-content: center;
60
- }
61
- img {
62
- max-width: 5%;
63
- }
64
- .controls {
65
- background-color: #333; /* Fondo oscuro */
66
- //padding: 20px;
67
- //margin: 10px 0;
68
- display: flex;
69
- flex-direction: column; /* Para alinear verticalmente */
70
- align-items: center; /* Para centrar horizontalmente */
71
- justify-content: center; /* Opcional para centrar verticalmente */
72
- }
73
- #controls2 {
74
- display: flex;
75
- align-items: center;
76
- //height: 100vh; /* Ajusta la altura del contenedor según sea necesario */
77
- justify-content: center;
78
- }
79
- button#recordButton {
80
- background-color: #008b8b; /* Color de fondo */
81
- color: #fff; /* Texto blanco */
82
- align-items: center;
83
- justify-content: center;
84
- }
85
- button#stopButton {
86
- background-color: #8b0000; /* Color de fondo */
87
- color: #fff; /* Texto blanco */
88
- align-items: center;
89
- justify-content: center;
90
- }
91
- /* Estilos para el contenido de audio (no proporcionado en el código) */
92
- /* Puedes agregar estilos adicionales para otros elementos según tus necesidades. */
93
- </style>
94
 
95
 
96
  </head>
97
  <body>
98
  <div class="login22">
99
- <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='/especialidad'"> Traumatología</h2>
100
  <h3 style="padding-left: 80%;font-size: 1.2rem;" onclick="location.href='/ajustes'">AJUSTES <img src="{{ user_image6 }}" alt="" style="max-width:18%;"></h3>
101
- <hr />
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
102
  <h2 style="font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman';font-size: 1.7rem;background-color: darkcyan;">Asistente de voz:</h2>
103
  <!--<form action="{{url_for('escuchar_trauma1')}}" method="post">
104
  <button type="button" style="padding-right: 85%;font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman';font-size: 1.2rem;padding-left: 1%;background-color: white; border: solid white" onclick="location.href='/escuchar_trauma'">Escuchar: <img src="{{ user_image5 }}" width="30% " style=" border-radius: 100%;box-shadow:2px 2px 2px 1px rgba(0, 0, 0, 0.2);" onclick="location.href='/escuchar_trauma'"></button>
@@ -109,7 +112,7 @@
109
  <!---------------------------------------------------------------------------------------->
110
 
111
  <div class="image-container">
112
- <img src="{{ user_image5 }}" alt="Descripción de la imagen">
113
  </div>
114
  <div id="instructions">Dele al botón "Grabar Voz". Cuando acabe, dele al botón "Parar grabación..." y obtendrá el resultado de la búsqueda</div>
115
 
 
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;
 
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: 5%;
37
+ height: auto;
38
+ }
39
+ .img2 {
40
+ max-width: 15%;
41
+ height: auto;
42
+ }
43
+ .text {
44
+ font-size: 36px; /* Tamaño de letra deseado */
45
+ }
46
+ .text2 {
47
+ font-size: 24px; /* Tamaño de letra deseado */
48
+ }
49
+ button#recordButton {
50
+ background-color: #008b8b; /* Color de fondo */
51
+ color: #fff; /* Texto blanco */
52
+ align-items: center;
53
+ justify-content: center;
54
+ }
55
+ button#stopButton {
56
+ background-color: #8b0000; /* Color de fondo */
57
+ color: #fff; /* Texto blanco */
58
+ align-items: center;
59
+ justify-content: center;
60
+ }
61
  /* Estilos para pantallas pequeñas (por ejemplo, hasta 768px) */
62
  @media screen and (max-width: 768px) {
63
  .quiro {
 
73
  font-size: 3.5rem; /* Restablecer el tamaño de la fuente original */
74
  }
75
  }
76
+ </style>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
77
 
78
 
79
  </head>
80
  <body>
81
  <div class="login22">
82
+ <!--<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='/especialidad'"> Traumatología</h2>
83
  <h3 style="padding-left: 80%;font-size: 1.2rem;" onclick="location.href='/ajustes'">AJUSTES <img src="{{ user_image6 }}" alt="" style="max-width:18%;"></h3>
84
+ <hr />-->
85
+ <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;">
86
+ <div class="container">
87
+ <div class="element">
88
+ <img class="img2" src="{{ user_image7 }}" alt="Atrás" onclick="location.href='/especialidad'">
89
+ </div>
90
+ <div class="element">
91
+ <p class="text2">Volver</p>
92
+ </div>
93
+ <div class="element">
94
+ <p class="text">TRAUMATOLOGÍA</p>
95
+ </div>
96
+ <div class="element">
97
+ <p class="text2">Ajustes</p>
98
+ </div>
99
+ <div class="element">
100
+ <img class="img2" src="{{ user_image6 }}" alt="Config." onclick="location.href='/ajustes'">
101
+ </div>
102
+ </div>
103
+ </h2>
104
+ </div>
105
  <h2 style="font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman';font-size: 1.7rem;background-color: darkcyan;">Asistente de voz:</h2>
106
  <!--<form action="{{url_for('escuchar_trauma1')}}" method="post">
107
  <button type="button" style="padding-right: 85%;font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman';font-size: 1.2rem;padding-left: 1%;background-color: white; border: solid white" onclick="location.href='/escuchar_trauma'">Escuchar: <img src="{{ user_image5 }}" width="30% " style=" border-radius: 100%;box-shadow:2px 2px 2px 1px rgba(0, 0, 0, 0.2);" onclick="location.href='/escuchar_trauma'"></button>
 
112
  <!---------------------------------------------------------------------------------------->
113
 
114
  <div class="image-container">
115
+ <img class="img" src="{{ user_image5 }}" alt="Descripción de la imagen">
116
  </div>
117
  <div id="instructions">Dele al botón "Grabar Voz". Cuando acabe, dele al botón "Parar grabación..." y obtendrá el resultado de la búsqueda</div>
118