-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRPS.css
More file actions
43 lines (43 loc) · 907 Bytes
/
RPS.css
File metadata and controls
43 lines (43 loc) · 907 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
body {
background-color: black;
color: white;
font-family: Arial;
flex-direction: column;
align-items: center; /* Center horizontally */
justify-content: center; /* Center vertically */
height: 100vh; /* Full viewport height */
margin: 0; /* Remove default body margin */
}
.title {
font-size: 35px;
font-weight: bold;
}
.move-icon{
height: 50px;
width: 50px;
}
.move-button{
background-color: transparent;
border: 3px solid white;
width: 100px;
height: 100px;
border-radius: 50px;
margin-right: 12px;
cursor: pointer;
}
.result{
font-size: 25px;
font-weight: bold;
margin-top: 50px;
}
.scoretext {
margin-top: 60px;
}
.resetscorebutton,
.auto-play-button {
border: none;
background-color: white;
font-size: 15px;
padding: 8px 10px;
cursor: pointer;
}