-
Notifications
You must be signed in to change notification settings - Fork 56
/
rps.css
69 lines (66 loc) · 1.17 KB
/
rps.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
65
66
67
68
69
#challenge-3{
display: flex;
text-align: center;
justify-content: center;
flex-direction: column;
background-color: black;
width: 60%;
margin:auto;
margin-top: 3%;
}
.text-3{
color:red;
}
#rpcPics{
display: flex;
margin-top:3%;
justify-content: space-around;
}
#scissors{
width:22%;
height: 30%;
/* margin-bottom: 10px; */
}
#rock{
width:30%;
height: 60%;
}
#paper{
width:20%;
height: 10%;
margin-bottom: 2%;
}
#rock:hover,#paper:hover,#scissors:hover{
box-shadow: 0px 15px 50px rgb(29, 29, 196);
}
#humanDiv, #botDiv,#messageDiv{
width:30%;
height:auto ;
}
#humanPic, #botPic{
width:100%;
height:auto ;
margin-bottom: 10%;
}
#humanPic{
box-shadow: 0px 5px 50px rgb(29, 29, 196);
}
#botPic{
box-shadow:0px 5px 50px red ;
}
#messageDiv h2{
font-size: 5vw;
}
#reset{
height: 5vh;
background-color: rgb(220, 228, 114);
margin-bottom: 0px;
}
#reset:hover{
box-shadow: 0 0 5px 1px yellow ;
}
table,th,td{
background-color: rgb(239, 239, 239);
border: 1px solid black;
border-spacing: 0px;
}