-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles2.css
81 lines (61 loc) · 1.17 KB
/
styles2.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
img {
width: 100%;
height: 100%;
object-fit: fill;
}
body{
overflow-y: hidden;
overflow-x: hidden;
}
.start-button {
padding: 10px;
position: absolute;
top: 50%;
left: 50%;
}
.containerImagem {
position: relative;
width: 100vw;
height: 100vh;
}
.pokemon-container {
border: 2px solid black;
width: 35%;
height: 50%;
border-radius: 20px;
}
.bulbasaur-container {
background-color: rgb(200, 248, 129);
}
.bulbasaur-container:hover{
box-shadow: 0px 2px 18px 0px rgba(88, 255, 73, 0.9);
}
.charmander-container:hover{
box-shadow: 0px 2px 18px 0px rgba(241, 74, 74, 0.9);
}
.squirtle-container:hover{
box-shadow: 0px 2px 18px 0px rgba(103, 134, 227, 0.9);
}
.charmander-container {
background-color: antiquewhite;
}
.squirtle-container {
background-color: rgb(146, 221, 252);
}
.initial-pokemon {
position: absolute;
width:700px;
height: 650px;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
display: none;
justify-content: center;
align-items: center;
gap: 10px;
}