-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
191 lines (164 loc) · 4.05 KB
/
styles.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@700&display=swap');
* {
margin: 0;
padding: 0;
font-family: 'Nunito';
}
body {
text-align: center;
color: #0c4fe1;
height: 100%;
}
h1 {
color: #EABE3F;
padding: 50px;
font-size: 40px;
}
.container {
background-color: none;
max-width: 80%;
margin: auto;
border: 3px solid #EABE3F;
border-radius: 20px;
display: flex;
flex-direction: column;
flex-wrap: nowrap;
padding: 50px 0;
justify-content: center;
align-items: center;
overflow: hidden; /* Evitar desbordamiento horizontal en dispositivos móviles */
}
.container2 {
background-color: none;
max-width: 80%;
margin: auto;
border: 3px solid #EABE3F;
border-radius: 20px;
display: flex;
flex-direction: column;
flex-wrap: nowrap;
padding: 50px 0;
justify-content: center;
align-items: center;
overflow: hidden; /* Evitar desbordamiento horizontal en dispositivos móviles */
}
.textosuperior {
font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 20px;
justify-content: center;
align-items: center;
color:black;
padding-right: 0.5em;
padding-left: 0.5em;
}
.pregunta {
font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 35px;
justify-content: center;
align-items: center;
padding-right: 0.5em;
padding-left: 0.5em;
}
.pregunta2 {
font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 25px;
justify-content: center;
align-items: center;
padding-right: 0.5em;
padding-left: 0.5em;
}
.guess-button {
background-color: #4285f4;
color: #fff;
padding: 10px 20px;
font-size: 16px;
border: none;
border-radius: 5px;
cursor: pointer;
margin-top: 20px;
white-space: nowrap; /* Evita que el texto se divida en múltiples líneas */
}
/* Estilo para alinear los botones horizontalmente */
.button-container {
display: flex;
justify-content: center;
gap: 10px; /* Espacio entre botones */
}
#result {
font-weight: bold;
font-size: 30px;
margin-bottom: 20px;
color: green;
}
/* Estilos adicionales para las figuras geométricas */
#shapes {
display: flex;
justify-content: space-around;
width: 70%;
margin-bottom: 20px;
}
.shape {
display: flex;
align-items: center;
justify-content: center;
}
.triangle {
width: 0;
height: 0;
border-left: 60px solid transparent; /* Ajuste para el doble de tamaño */
border-right: 60px solid transparent; /* Ajuste para el doble de tamaño */
border-bottom: 120px solid; /* Ajuste para el doble de tamaño */
}
.square {
width: 120px; /* Ajuste para el doble de tamaño */
height: 120px; /* Ajuste para el doble de tamaño */
border: 2px solid black; /* Añadir borde al cuadrado */
}
.circle {
border-radius: 50%;
width: 120px; /* Ajuste para el doble de tamaño */
height: 120px; /* Ajuste para el doble de tamaño */
border: 2px solid black; /* Añadir borde al círculo */
}
.button-megaphone-container {
display: flex;
width: 70%;
justify-content: center; /* Centra el conjunto de elementos */
gap: 20px; /* Espaciado entre cada grupo de botón y megáfono */
}
.button-megaphone-pair {
display: flex;
flex-direction: column; /* Coloca el botón y el megáfono en columna */
align-items: center; /* Centra el botón y el megáfono horizontalmente */
gap: 10px; /* Espaciado entre el botón y el megáfono */
}
@media (max-width: 768px) {
.container,
.container2 {
max-width: 90%; /* Ancho completo en dispositivos móviles */
}
.pregunta {
font-size: 30px;
}
.pregunta2 {
font-size: 25px;
}
.textosuperior {
font-size: 25px; /* Tamaño de texto superior en dispositivos móviles */
}
.square, .circle {
width: 60px;
height: 60px;
}
.triangle {
border-left: 30px solid transparent;
border-right: 30px solid transparent;
border-bottom: 60px solid;
}
.guess-button {
font-size: 12px;
}
.button-megaphone-container {
gap: 10px;
}
}