-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
90 lines (70 loc) · 1.67 KB
/
Copy pathstyle.css
File metadata and controls
90 lines (70 loc) · 1.67 KB
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
body {
font-family: "Playfair Display",Arial, sans-serif;
background-color: #0f0f0f; /* Fondo oscuro */
color: #00ff00; /* Caracteres verdes brillantes */
}
/* Estilos para el encabezado */
.header {
width: 100%;
display: flex;
justify-content: space-between;
padding: 20px;
box-sizing: border-box;
position: absolute;
top: 0;
left: 0;
}
.scores {
display: flex;
}
.score {
margin-right: 20px;
}
.time-container {
margin-left: auto;
}
/* Estilos para el contenido principal */
.console {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 100px;
}
#userInput {
margin-top: 10px;
padding: 10px;
font-size: 18px;
background-color: rgba(192, 192, 192, 0.5); /* Color gris transparente */
border: none; /* Sin contorno */
outline: none; /* Sin contorno al enfocar */
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Sombra */
}
#topScores {
margin-top: 20px;
text-align: center; /* Centra el texto horizontalmente */
}
#topScores h2 {
margin-bottom: 10px; /* Espacio adicional debajo del título */
}
#scoreList {
list-style-type: none; /* Oculta los marcadores de lista */
padding: 0; /* Elimina el relleno predeterminado de la lista */
}
#scoreList li {
margin-bottom: 5px; /* Espacio entre cada elemento de la lista */
}
/* Estilos para el inicio del juego */
#startScreen {
text-align: center;
margin-top: 50px;
}
/* Estilos para la lista de puntajes */
#gameScreen {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 100px;
}
#scoreList {
list-style-type: none; /* Oculta los marcadores de lista */
}