-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
116 lines (100 loc) · 2.09 KB
/
style.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
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@700&display=swap');
* {
margin: 0;
padding: 0;
font-family: 'Nunito';
}
body {
max-height: 80%;
text-align: center;
color: #0c4fe1;
}
h1 {
color: rgb(10, 10, 10);
padding: 50px;
font-size: 40px;
}
.container {
background-color: #ddff62;
max-width: 80%;
margin: 0 auto;
padding: 20px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
border: 3px solid #000;
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: #f0f3e9;
max-width: 80%;
margin: auto;
border: 3px solid #000;
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-size: 30px;
justify-content: center;
align-items: center;
}
#question {
margin-bottom: 30px;
}
label {
font-weight: bold;
}
#answer {
margin-bottom: 30px;
}
#buttons-container {
margin-top: 10px;
}
.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 */
}
input[type="text"] {
width: 100%;
padding: 10px;
border: 2px solid #000000;
border-radius: 5px;
font-size: 30px;
text-align: center;
}
#result {
font-weight: bold;
font-size: 30px;
margin-bottom: 20px;
color: green;
}
@media (max-width: 768px) {
.container,
.container2 {
max-width: 90%; /* Ancho completo en dispositivos móviles */
}
input[type="text"] {
width: 80%; /* Ancho máximo del 90% en dispositivos móviles */
}
.textosuperior {
font-size: 25px; /* Tamaño de texto superior en dispositivos móviles */
}
}