-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.css
83 lines (56 loc) · 1.28 KB
/
popup.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
body{
background-color: orange;
width: 750px;
height: 700px;
margin: 0;
}
div.game{
width: 970px;
height: 604px;
transform: scale(0.77);
transform-origin: top left;
position: absolute;
top: 5px;
}
iframe.game{
width: 100%; /* Ajusta el ancho del contenido al 100% del iframe */
height: 100%; /* Ajusta la altura del contenido al 100% del iframe */
margin: 0; /* Elimina los márgenes predeterminados del body dentro del iframe */
padding: 0; /* Elimina el relleno predeterminado del body dentro del iframe */
}
a.selectGame{
border: 1px solid black;
color: black;
background-color: rgb(82, 252, 82);
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
text-decoration: none;
}
a.selectGame:hover{
color: white;
}
div.popularGames{
position: absolute;
top: 470px;
width: 600px;
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
div.selectorGame{
margin: 5px;
}
div.selectorGame img{
height: 99px;
width: 99px;
}
img.imgClick{
opacity: 1;
position: absolute;
top :2px;
width: 750px;
height: 468px;
display: none;
}