-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrps.css
More file actions
47 lines (40 loc) · 734 Bytes
/
rps.css
File metadata and controls
47 lines (40 loc) · 734 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
46
47
body {
background-color: rgb(25,25,25);
color: rgb(255, 255, 255);
font-family: Arial;
text-align: center;
}
.title {
font-size: 30px;
font-weight: bold;
}
.move-icon {
height: 50px;
}
.move-button {
background-color: transparent;
border: 3px solid white;
width: 120px;
height: 120px;
border-radius: 60px;
margin-right: 10px;
cursor: pointer;
}
.result {
font-size: 25px;
font-weight: bold;
margin-top: 50px;
}
.score{
margin-top: 60px;
}
.reset-score-button {
background-color: white;
border: none;
font-size: 15px;
font-weight: bold;
border-radius: 50px;
margin-bottom: 30px;
padding: 8px 15px;
cursor: pointer;
}