-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrock-paper-scissors.css
93 lines (78 loc) · 1.29 KB
/
rock-paper-scissors.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
body {
background-color: rgb(25, 25, 25);
color: white;
font-family: Arial, Helvetica, sans-serif;
user-select: none;
}
div.title-container {
text-align: center;
}
p.title {
font-size: 30px;
font-weight: bold;
text-align: center;
height: 35px;
display: inline-block;
}
img.icon {
height: 35px;
}
div.button-container {
display: flex;
justify-content: center;
}
img.move-icon {
height: 50px;
}
button.move-button {
background-color: transparent;
border: 3px solid white;
width: 120px;
height: 120px;
border-radius: 50%;
margin-right: 10px;
cursor: pointer;
}
div.result-image-container,
p.you-computer {
text-align: center;
}
p.result {
font-size: 25px;
font-weight: bold;
margin-top: 50px;
text-align: center;
}
p.score {
margin-top: 60px;
text-align: center;
}
div.button-wrapper {
text-align: center;
}
button.reset-score-button,
button.auto-play-button,
button.yes-button,
button.no-button {
margin-right: 10px;
background-color: white;
border: none;
font-size: 15px;
padding: 8px 15px;
cursor: pointer;
}
p.reset-score-confirmation-message {
display: inline-block;
}
div.js-confirmation-container {
height: 50.22px;
text-align: center;
}
p.info {
text-align: center;
}
div.keybind-list-wrapper {
display: flex;
flex-direction: column;
align-items: center;
}