-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
70 lines (59 loc) · 985 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
body {
margin: 0;
padding: 0;
background-color: black;
align-items: center;
justify-content: center;
}
h1 {
color: white;
margin: 1rem;
text-align: center;
}
.main-game {
height: 80vh;
width: 100vw;
display: flex;
justify-content: center;
align-items: center;
}
.genius{
display: grid;
grid-template-areas: 'green red'
'yellow blue';
grid-gap: 10px;
border: 5px solid gray;
background-color: lightgrey;
border-radius: 100%;
width: 700px;
height: 700px;
}
.blue {
grid-area: blue;
background-color: blue;
border-bottom-right-radius: 100%;
}
.red {
grid-area: red;
background-color: red;
border-top-right-radius: 100%;
}
.yellow {
grid-area: yellow;
background-color: yellow;
border-bottom-left-radius: 100%;
}
.green {
grid-area: green;
background-color: green;
border-top-left-radius: 100%;
}
.selected {
opacity: 0.3;
}
@media (max-width: 450px) {
.genius{
width: 350px;
height: 350px;
}
}