-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
51 lines (44 loc) · 889 Bytes
/
Copy pathstyles.css
File metadata and controls
51 lines (44 loc) · 889 Bytes
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
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #87CEEB;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
#game-container {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
}
#game-canvas {
border: 2px solid #000;
background-color: #5c94fc;
}
#button-container {
display: flex;
justify-content: center;
gap: 10px; /* Espaciado entre botones */
margin-top: 10px;
}
#start-button, #boton-pausa, #boton-reiniciar {
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
}
#info-panel {
margin-top: 10px;
font-size: 20px;
display: flex;
justify-content: space-between;
width: 100%;
max-width: 600px;
}
#nivel{
margin-top: 15px;
font-size: 20px;
font-size: bold;
}