-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
86 lines (86 loc) · 1.43 KB
/
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
.navbar{
display: flex;
background-color: black;
color: white;
text-align: center;
height: 80px;
width: 1520px;
justify-content: center;
align-items: center;
}
.icons{
display: flex;
/* justify-content: space-evenly; */
align-items: center;
padding: 20px;
padding-left: 350px;
gap: 100px;
}
.icon{
height: 200px;
width: 200px;
border-radius: 50%;
display: -webkit-inline-flex;
align-items: center;
justify-content: space-evenly;
flex-direction: column;
}
#rock{
background-color: pink;
}
#paper{
background-color: rgb(166, 66, 166);
}
#scissors{
background-color: aqua;
}
#icon{
font-size: 120px;
text-align: center;
color: white;
}
#rock:hover{
border: 5px solid black;
}
#paper:hover{
border: 5px solid black;
}
#scissors:hover{
border: 5px solid black;
}
.score{
display: flex;
justify-content: center;
gap: 200px;
}
pre{
font-size: 40px;
}
p{
font-size: 30px;
}
.message{
height: 50px;
font-size: 20px;
width: 500px;
border-radius: 8px;
text-align: center;
}
.btn{
display: flex;
justify-content: center;
}
.msg{
display: flex;
justify-content: center;
align-items: center;
color: white;
background-color: black;
height: 50px;
width: 500px;
font-size: 40px;
border-radius: 8px;
text-align: center;
align-self: center;
margin-left: 500px;
}