-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
89 lines (77 loc) · 1.41 KB
/
Copy pathstyle.css
File metadata and controls
89 lines (77 loc) · 1.41 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
body {
margin: 0;
background-color: darkgray;
}
.row {
display: grid;
grid-template-areas: 'menu main-game' ;
height: 100vh;
width: 100vw;
}
.menu {
grid-area: 'menu';
height: 100%;
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#title {
font-size: 40px;
font-weight: bold;
font-family: 'Courier New', Courier, monospace;
}
.menu button {
height: 50px;
width: 100px;
font-size: 18px;
font-weight: bold;
}
.main-game {
grid-area: 'main-game';
height: 100%;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
#score {
font-size: 24px;
font-weight: bold;
}
.genius {
display: grid;
grid-template-areas: 'verde vermelho'
'amarelo azul';
grid-gap: 5px;
border: 1px solid #ffffff;
background-color: #ffffff;
border-radius: 100%;
width: 500px;
height: 500px;
}
.green {
grid-area: verde;
background-color: green;
border-top-left-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%;
}
.blue {
grid-area: azul;
background-color: blue;
border-bottom-right-radius: 100%;
}
.selected {
opacity: 0.7;
}