Subir archivos a "/"

This commit is contained in:
2026-06-12 10:20:59 +02:00
parent af5efecd57
commit 2e4d57efb6
3 changed files with 337 additions and 0 deletions
+123
View File
@@ -0,0 +1,123 @@
#fin_juego{
border: 2px solid red;
background-color: #dddddd;
width: 45%;
height: 50%;
position: absolute;
left: 50px;
top: 60px;
opacity: 0.8;
z-index: 1000;
visibility:hidden;
color: green;
font-size: 6em;
text-align: center;
padding-top: 30px;
}
#reiniciar_juego{
background-color:blue;
color:white;
font-weight:bold;
border: 2px solid white;
padding: 5px;
font-size:0.3em;
box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.3);
}
#reiniciar_juego:hover{
color:red;
}
#monigote, #palabra{
width:50%;
display:flex;
flex-wrap:wrap;
font-size: 6em;
justify-content:center;
margin-bottom:30px;
}
#estadisticas{
width:20%;
background-color: #cccccc;
position:absolute;
left: 55%;
font-size:1.5em;
font-family:fantasy;
}
#marcador{
font-weight: bold;
text-transform: uppercase;
}
#jugadas{
color: blue;
margin-left:10px;
}
#ganadas{
color: green;
margin-left:10px;
}
#perdidas{
color:red;
margin-left:10px;
}
#cuerda, #cabeza{
width: 100%;
text-align:center;
vertical-align:top;
}
#brazo_izq{
width: 45%;
text-align:right;
}
#tronco{
width: 10%;
text-align:center;
font-weight:bold;
}
#brazo_der{
width: 45%;
text-align:left;
}
#pierna_izq{
width: 50%;
text-align:right;
}
#pierna_der{
width: 50%;
text-align:left;
}
#teclado{
display:flex;
flex-wrap:wrap;
width:50%;
}
.tecla{
width:5%;
border: 1px solid red;
margin: 10px;
padding: 10px;
color: red;
text-align:center;
}
.tecla:hover{
background-color:red;
color:white;
}
.letra{
width: 10%;
height: 1.2em;
border-bottom: 2px solid blue;
margin: 10px;
text-align:center;
}
h1{
width:50%;
text-align:center;
font-size:3em;
font-family: fantasy;
color:blue;
}