-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
48 lines (42 loc) · 809 Bytes
/
styles.css
File metadata and controls
48 lines (42 loc) · 809 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
48
body {
display: flex;
flex-direction: column;
align-items: center;
height: 100vh;
margin: 0;
font-family: Arial, sans-serif;
background-color: #f2f2f2;
}
h1 {
font-size: 2.5rem;
margin-bottom: 20px;
}
.choices {
display: flex;
gap: 15px;
margin-bottom: 20px;
}
.choices button {
padding: 20px;
font-size: 6rem;
cursor: pointer;
min-width: 160px;
border-radius: 25px;
border: none;
background-color: rgb(96, 207, 248);
transition: transform 0.2s, background-color 0.3s;
}
.choices button:hover {
background-color: rgb(22, 132, 172);
transform: scale(1.1);
}
.scoreboard {
font-size: 1.8rem;
margin-bottom: 20px;
}
#playerDisplay,
#computerDisplay,
#resultDisplay {
margin: 10px 0;
font-size: 2rem;
}