-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles-r-p-s.css
56 lines (56 loc) · 1.04 KB
/
styles-r-p-s.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
body{
background-color: rgb(31, 31, 31);
color: white;
font-family: 'Prompt';
font-weight: 200;
}
.whole{
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
}
.title{
font-size: 40px;
font-weight: 400;
}
.move-icon{
height: 50px;
}
.move-button{
background-color: transparent;
border: 3px solid white;
border-radius: 60px;
width: 120px;
height: 120px;
margin-right: 10px;
cursor: pointer;
}
.move-button:hover{
background-color: white;
border: none;
}
.reset-score-button:hover{
background-color: transparent;
border: 3px solid white;
color: white;
padding: 5px 12px;
}
.result{
font-size: 25px;
font-weight: 400;
margin-top: 50px;
}
.score{
margin-top: 60px;
}
.reset-score-button{
background-color: white;
border: none;
color: black;
font-size: 15px;
font-family: 'Prompt';
font-weight: 400;
padding: 8px 15px;
cursor: pointer;
}