-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
52 lines (45 loc) · 858 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
47
48
49
50
51
52
body {
margin: 0;
background-color: rgb(208, 255, 239);
}
.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%;
width: 700px;
height: 700px;
}
.blue {
grid-area: azul;
background-color: blue;
border-bottom-right-radius: 100%;
}
.red {
grid-area: vermelho;
background-color: red;
border-top-right-radius: 100%;
}
.yellow {
grid-area: amarelo;
background-color: yellow;
border-bottom-left-radius: 100%;
}
.green {
grid-area: verde;
background-color: green;
border-top-left-radius: 100%;
}
.selected {
opacity: 0.8;
}