-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
109 lines (97 loc) · 1.84 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
106
107
108
109
body {
background-color: #4F6457;
color: antiquewhite;
font-family: 'Montserrat', sans-serif;
font-weight: 200;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
img {
border-radius: 10%;
opacity: 0;
transition: opacity 5s;
animation: fadeInAnimation ease 7s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}
@keyframes fadeInAnimation {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.restart {
display: none;
}
.button_bar {
display: flex;
justify-content: space-evenly;
align-self: stretch;
}
#playerrock,
#playerpaper,
#playerscissors {
height: 100px;
width: 100px;
font-family: 'Montserrat', sans-serif;
font-size: 20px;
font-weight: bold;
background-color: #75B1A9;
color: rgb(15, 15, 15);
border-color: antiquewhite;
border-radius: 10%;
}
.binkyrock,
.binkypaper,
.binkyscissors {
height: 100px;
width: 100px;
font-family: 'Montserrat', sans-serif;
font-size: 20px;
font-weight: bold;
background-color: #D9B44A;
color: rgb(15, 15, 15);
border-color: antiquewhite;
border-radius: 10%;
transition: all 0.07s ease;
}
.glow {
transform: scale(1.1);
border-color: #ffc600;
box-shadow: 0 0 1rem #242323;
}
#results {
font-size: 24px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: antiquewhite;
font-weight: bold;
margin: 10px;
}
#running_total {
font-size: 24px;
font-weight: bold;
display: flex;
justify-content: space-evenly;
align-self: stretch;
}
.restart button {
margin-bottom: 60px;
margin-top: 60px;
background-color: #2b4353;
color: antiquewhite;
border-color: antiquewhite;
border-radius: 10%;
font-family: 'Montserrat', sans-serif;
font-size: 16px;
font-weight: bold;
height: 100px;
width: 100px;
border-radius: 10%;
}