-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathestilosGameOver.css
50 lines (45 loc) · 918 Bytes
/
estilosGameOver.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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
.container-gameOver{
width: 100vw;
height: 100vh;
background-color: lightblue;
position: fixed;
}
.informacion{
width: 50vmin;
height: 50vmin;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: lightcoral;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
border-radius: 15px;
}
.informacion h2{
transform: translateY(-25rem);
transition: .3s;
font-size: 2.5rem;
letter-spacing: 0.5rem;
text-shadow: 3px 3px 10px rgb(197, 39, 39);
}
.resultados{
display: flex;
width: 100%;
justify-content: space-evenly;
font-size: 1.2rem;
}
.salir{
background-color: rgba(197, 39, 39, 0.5);
display: block;
padding: 1rem;
border-radius: 15px;
cursor: pointer;
}