blob: 1f911dbcb0406d535f127fbfcd0386e9460925e0 (
plain)
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
|
* {
margin: 0;
padding: 0;
}
.waiting-message, .no-winner, .winner {
align-items: center;
color: white;
display: flex;
height: 100vh;
justify-content: center;
width: 100vw;
position: absolute;
top: 0;
left: 0;
font-size: 10vh;
font-family: 'Helvetica Neue', helvetica, arial, sans-serif;
font-weight: 600;
}
.michaelangelo {
background-color: orange;
}
.donatello {
background-color: purple;
}
.leonardo {
background-color: blue;
}
.raphael {
background-color: red;
}
.no-winner {
background-color: silver;
}
.waiting-message {
background-color: black;
}
/* Vue built-in transitions */
.fade-enter-active, .fade-leave-active {
transition: opacity 1.5s
}
.fade-enter, .fade-leave-to {
opacity: 0
}
|