-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
45 lines (38 loc) · 616 Bytes
/
Copy pathstyles.css
File metadata and controls
45 lines (38 loc) · 616 Bytes
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
body {
background-color: #CCC;
}
.selections {
display: flex;
justify-content: center;
}
.selection {
background: none;
border: none;
outline: none;
cursor: pointer;
font-size: 2rem;
transition: 100ms;
}
.selection:hover {
transform: scale(1.2);
}
.results {
margin-top: 1rem;
display: grid;
justify-content: center;
grid-template-columns: repeat(2, 1fr);
justify-items: center;
align-items: center;
}
.result-score {
margin-left: .1rem;
font-size: .5rem;
color: #333;
}
.result-selection {
opacity: .5;
}
.result-selection.winner {
opacity: 1;
font-size: 1.5rem;
}