-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
52 lines (42 loc) · 969 Bytes
/
Copy pathstyle.css
File metadata and controls
52 lines (42 loc) · 969 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
52
*{
padding: 0;
margin: 0;
box-sizing: border-box;}
html{
font-size: 62.5%;
font-family: Arial, Helvetica, sans-serif;}
:root{
--fondo:#4c0580;
--fondo-btn:#fdef05;
--fondo-canvas:#feff9d;
--borde:#ff7700;}
body{
background-color: var(--fondo);}
.contenedor{
width: 100vw;
height: 100vh;
display: grid;
justify-content: center;
align-items: center;}
#game{
background-color: var(--fondo-canvas);
border: 4px solid var(--borde);
border-radius: 8px;}
.controles{
width: 100%;
display: grid;
grid-template-columns: repeat(auto-fit, 50px);
place-content: center;
}
.controles button{
width: 50px;
height: 50px;
border-radius: 50%;
border: 4px solid var(--borde);
background-color:var(--fondo-btn);
color:var(--borde);
font-size: 2.4rem;}
.mensajes{
color: white;
font-size: 2.4rem;
}