-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
50 lines (45 loc) · 878 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
BODY{
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
margin: 0;
display: flex;
flex-direction: column;
align-items: center;
background-color: rgb(0, 59, 10);
}
H1{
font-size: 3.5REM;
color: beige;
}
.choises{
margin-bottom: 30px;
}
.choises button{
font-size: 7.5rem;
min-width: 160px;
margin: 0 10px;
border-radius: 150px;
background-color: rgb(93, 49, 129);
cursor: pointer;
transition: background-color 0.5s ease;
}
.choises button:hover{
background-color: rgb(93, 49, 300);
}
#playerDisplay, #compDisplay{
font-size: 2.5rem;
}
#resultDisplay{
font-size: 5rem;
margin: 30px 0;
}
.Error{
padding: 0;
margin: 0;
background-color: rgba(220, 20, 60, 0.103);
}
button{
background-color: rgb(226, 43, 43);
border-color: darkgrey;
border-radius: 150px;
}