-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
52 lines (46 loc) · 925 Bytes
/
styles.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
51
52
* {
box-sizing: border-box;
}
body {
background-color: Lavender;
font-family: "Gill Sans", sans-serif;
display: flex;
flex-direction: column;
text-align: center;
align-items: center;
}
#juego {
border: 1px solid black;
background-color: LightSteelBlue;
width: 600px;
}
p {
margin: 0;
}
#score, #controles, #gameplay, #texto {
display: flex;
justify-content: space-around;
border: 1px solid black;
padding: 20px;
}
button {
background: linear-gradient(white, CadetBlue);
border: 2px solid CadetBlue;
cursor: pointer;
width: 100px;
height: 40px;
font-weight:bold;
}
@media (max-width: 600px) {
#juego {
width: 300px;
}
#controles {
height: 200px;
flex-direction: column;
align-items: center;
}
button {
width: 200px;
}
}