-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
73 lines (72 loc) · 1.39 KB
/
Copy pathstyles.css
File metadata and controls
73 lines (72 loc) · 1.39 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
* {
font-family: 'Arial';
}
body{
padding:0;
margin:0;
}
.gameboard {
margin: 0 auto;
margin-top: 100px;
width: 300px;
height: 300px;
display:grid;
grid-template-columns: 1fr 1fr;
}
.gameboard__celeste {
width: 150;
height: 150;
background-color: rgb(43, 207, 207);
border-top-left-radius: 150px;
}
.gameboard__celeste.light{
background-color: rgb(167, 255, 255);
}
.gameboard__violeta {
width: 150;
height: 150;
background-color: rgb(134, 0, 146);
border-top-right-radius: 150px;
}
.gameboard__violeta.light{
background-color: rgb(240, 152, 248);
}
.gameboard__naranja {
width: 150;
height: 150;
background-color: rgb(252, 165, 4);
border-bottom-left-radius: 150px;
}
.gameboard__naranja.light{
background-color: rgb(255, 214, 137);
}
.gameboard__verde {
width: 150;
height: 150;
background-color: rgb(2, 173, 17);
border-bottom-right-radius: 150px;
}
.gameboard__verde.light{
background-color: rgb(158, 255, 166);
}
.botoncaja{
display: flex;
justify-content: center;
margin-top: -170px;
}
.botoncaja button{
height: 40px;
border-radius: 10px;
width: 250px;
border: none;
background-color: rgb(152, 251, 152);
outline: none;
font-size: 18px;
}
.botoncaja button:hover{
cursor: pointer;
background-color:rgb(200, 243, 230) ;
}
.hide {
display: none;
}