-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
70 lines (68 loc) · 1.22 KB
/
styles.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
body {
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
background: linear-gradient(#7d22e6, rgba(0, 174, 255, 0.678));
width: 100vw;
height: 100vh;
overflow-x: hidden;
overflow-y: hidden;
color: white;
text-shadow: 0 0 4px black;
}
.choices {
display: flex;
width: 80vw;
justify-content: space-around;
margin-top: 200px;
position: absolute;
z-index: 1;
}
.playerImgs,
.computerImgs {
display: flex;
width: auto;
justify-content: space-between;
background: rgba(255, 255, 255, 0.048);
padding: 20px;
border: solid rgb(184, 184, 184) 5px;
border-radius: 10px;
max-height: 90px;
}
img {
width: 90px;
height: 90px;
}
.pImg:hover {
cursor: pointer;
width: 110px;
height: 110px;
}
.active {
width: 110px;
height: 110px;
}
.winner {
width: 100%;
}
.reset {
display: none;
justify-content: center;
align-items: center;
width: 200px;
height: 60px;
background-color: rgba(0, 255, 255, 0.507);
color: black;
font-size: x-large;
border: 1px solid black;
border-radius: 5px;
}
.reset:hover {
cursor: pointer;
}
.winnerDiv {
display: flex;
flex-direction: column;
align-items: center;
}