-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRPS.css
More file actions
39 lines (38 loc) · 686 Bytes
/
RPS.css
File metadata and controls
39 lines (38 loc) · 686 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
body{
background-color: rgb(25,25,25);
color: white;
font-family: Arial;
}
h3{
font-size: 30px;
}
.image-element{
width: 50px;
border: none;
}
.move-button{
background-color: rgb(25,25,25);
border: solid 2px white;
border-radius: 100px;
padding: 30px;
margin: 10px;
cursor: pointer;
}
.result{
color: white;
font-size: 25px;
font-weight: bold;
font-family: Arial;
margin-top: 60px;
}
.score{
margin-top: 50px;
}
.button-reset{
padding: 10px 20px;
font-size: 16px;
background-color: white;
border-radius: 0;
border: none;
cursor: pointer;
}