-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
58 lines (48 loc) · 721 Bytes
/
style.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
body {
background-color: #f1f1f1;
font-family: "Arial", sans-serif;
margin: 0;
padding: 0;
}
h1 {
font-size: 2rem;
text-align: center;
padding-top: 100px;
}
p {
font-size: 1.5rem;
font-weight: 600;
text-align: center;
margin-bottom: 0.5rem;
}
.buttons {
display: flex;
justify-content: center;
}
button {
border: none;
font-size: 3rem;
margin: 0 0.5rem;
padding: 0.5rem;
cursor: pointer;
border-radius: 5px;
transition: all 0.3s ease-in-out;
}
button:hover {
opacity: 0.7;
}
#rock {
background-color: #ff0000;
}
#paper {
background-color: #2196f3;
}
#scissors {
background-color: #4caf50;
}
#user-score {
color: #2196f3;
}
#computer-score {
color: #ff0000;
}