-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
83 lines (71 loc) · 1.36 KB
/
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
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: 'vermelho laranja amarelo'
'verde ciano azul'
'roxo rosa rosaescuro';
grid-gap: 10px;
border: 1px solid #ffffff;
background-color: #ffffff;
border-radius: 25%;
width: 700px;
height: 700px;
}
.red {
grid-area: vermelho;
background-color: rgb(255, 0, 0);
border-radius: 25%;
}
.orange {
grid-area: laranja;
background-color: rgb(255, 115, 0);
border-radius: 25%;
}
.yellow {
grid-area: amarelo;
background-color: rgb(251, 255, 0);
border-radius: 25%;
}
.green {
grid-area: verde;
background-color: rgb(51, 255, 0);
border-radius: 25%;
}
.cyan {
grid-area: ciano;
background-color: rgb(0, 255, 213);
border-radius: 25%;
}
.blue {
grid-area: azul;
background-color: rgb(0, 38, 255);
border-radius: 25%;
}
.purple {
grid-area: roxo;
background-color: rgb(132, 0, 255);
border-radius: 25%;
}
.pink {
grid-area: rosa;
background-color: rgb(247, 0, 255);
border-radius: 25%;
}
.darkpink {
grid-area: rosaescuro;
background-color: rgb(255, 0, 85);
border-radius: 25%;
}
.selected {
opacity: 0.4;
}