-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
64 lines (52 loc) · 937 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
59
60
61
62
63
64
@import url("https://fonts.googleapis.com/css2?family=Orbitron&display=swap");
* {
font-family: "Orbitron", sans-serif;
text-align: center;
}
h1 {
font-weight: bold;
}
.rock {
background-image: url(./img/rock.png);
}
.paper {
background-image: url(./img/paper.png);
}
.scissors {
background-image: url(./img/scissor.png);
}
button {
border: 0px solid;
border-radius: 15px;
width: 90px;
height: 90px;
background-size: cover;
background-repeat: no-repeat;
margin: 10px;
cursor: pointer;
}
.btn:hover {
background-color: rgb(255, 191, 161);
color: white;
}
.btn-reset {
background-color: rgb(255, 191, 161);
font-weight: bold;
height: 40px;
}
.score {
display: flex;
justify-content: center;
flex-direction: row;
}
.player-section {
padding-right: 50px;
}
.btn-reset {
background-color: rgb(255, 191, 161);
font-weight: bold;
height: 40px;
}
.hidden {
visibility: hidden;
}