-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
51 lines (49 loc) · 1006 Bytes
/
Copy pathstyles.css
File metadata and controls
51 lines (49 loc) · 1006 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
49
50
51
body{
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
text-align: center;
background-color: rgb(52, 97, 139);
margin: 0;
padding: 20px;
}
#instructions, #play-game, #choices, #score, #result {
font-size: 1.2em;
margin-bottom: 20px;
background-color: aliceblue;
width: 25%;
padding: 10px;
border-radius: 10px;
margin: 20px auto;
}
h1 {
color: white;
}
button {
padding: 10px 20px;
font-size: 1em;
cursor: pointer;
border: none;
border-radius: 5px;
}
#rock{
background-color: rgb(160, 2, 2);
color: white;
}
#paper{
background-color: rgb(2, 147, 2);
color: white;
}
#scissors{
background-color: rgb(2, 2, 140);
color: white;
}
#play{
background-color: rgb(49, 126, 171);
color: rgb(252, 249, 249);
}
#play-again {
background-color: rgb(49, 126, 171);
color: white;
}
#play:hover, #rock:hover, #paper:hover, #scissors:hover, #play-again:hover {
opacity: 0.8;
}