-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
46 lines (46 loc) · 913 Bytes
/
style.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
body{
background: rgb(196, 219, 217);
margin: 0;
}
.main-game{
height: 100vh;
width: 100vw;
display: flex;
justify-content: center;
align-items: center;
}
.genius{
display: grid;
grid-template-areas: 'verde vermelho'
'amarelo azul';
grid-gap: 10px;
border: 1px solid #ffffff;
background-color: #ffffff;
border-radius: 100%;
margin-top: 6%;
width: 700px;
height: 700px;
}
.blue{
grid-area: azul;
background: blue;
border-bottom-right-radius: 100%;
}
.red {
grid-area: vermelho;
background: red;
border-top-right-radius: 100%;
}
.yellow {
grid-area: amarelo;
background: yellow;
border-bottom-left-radius: 100%;
}
.green {
grid-area: verde;
background: green;
border-top-left-radius: 100%;
}
.selected{
opacity: 0.8;
}