-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
60 lines (54 loc) · 1.23 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
body {
text-align: center;
/* background-image: url('fondo.jpg'); */
background-size: cover;
background-repeat: no-repeat;
}
#container {
display: inline-block;
text-align: left;
}
#numbersContainer {
display: flex;
justify-content: center;
background-color: white;
padding: 20px;
border-radius: 10px;
margin-bottom: 20px;
}
.numberBox {
margin: 10px;
font-size: 24px;
border: 2px solid black;
padding: 10px;
width: 60px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
background-color: white;
border-radius: 10px;
}
#resultTable {
margin: 0 auto;
margin-top: 50px;
margin-bottom: 50px;
background-color: white;
padding: 20px;
border-radius: 10px;
}
/* Estilos para los botones */
button {
background-color: red;
color: white;
border: none;
border-radius: 50%; /* Hace que el botón sea redondo */
padding: 15px 25px; /* Espaciado interno */
font-size: 16px;
cursor: pointer;
margin: 5px;
transition: background-color 0.3s ease; /* Transición suave para el cambio de color de fondo */
}
button:hover {
background-color: darkred; /* Cambio de color al pasar el mouse */
}