-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
105 lines (83 loc) · 1.65 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
body {
background-color: #E0F2E9;
color: #A17C6B;
font-family: 'Oswald', sans-serif;
font-size: 20px;
}
#container {
width: 1000px;
margin: 0 auto;
}
#question{
border: 10px solid white;
margin: 80px auto 0;
padding: 50px;
}
p {
color: #A17C6B;
text-align: center;
}
.player-choice {
position: relative;
}
#choice1 {
position: absolute;
left: 0px;
border: 10px solid white;
padding: 50px;
margin: 50px 0 0 0;
}
#choice1:hover, #choice2:hover {
background-color: #D7E8BA;
}
#choice2{
position: absolute;
right: 0px;
border: 10px solid white;
padding: 50px;
margin: 50px 0 0 0;
}
#player-scores {
position: absolute;
top: 490px;
width: 880px;
margin: 150px auto 0;
padding: 50px;
border: 10px solid white;
}
#player-one-score, #player-two-score {
margin:0 auto;
text-align: center;
}
/*start animation*/
#winner {
width: 1000px;
height: 800px;
background-color: #2E5077;
position: absolute;
top: 50px;
-webkit-animation-name: winning; /* Chrome, Safari, Opera */
-webkit-animation-duration: 2s; /* Chrome, Safari, Opera */
animation-name: winning;
animation-duration: 2s;
font-size: 50px;
}
/* Chrome, Safari, Opera */
@-webkit-keyframes winning {
0% {background-color:#2E5077; left:460px; top:-500px;}
100% {background-color:#2E5077; left:460px; top: 50px;}
}
/* Standard syntax */
@keyframes winning {
0% {background-color:#2E5077; left:460px; top:-500px;}
100% {background-color:#2E5077; left:460px; top:50px;}
}
/*end animation*/
/*backup
#winner {
width: 1000px;
height: 800px;
background-color: #2E5077;
position: absolute;
top: -600px;
left: -10px;*/