-
Notifications
You must be signed in to change notification settings - Fork 0
/
style-bigCard.css
116 lines (101 loc) · 1.97 KB
/
style-bigCard.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/* pokedex big info card setting */
#bigPokedexBg {
height: 100vh;
width: 100%;
background-color: rgba(169, 166, 167, 0.688);
color: white;
display: flex;
flex-direction: row;
z-index: 100;
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
justify-content: center;
align-items: center;
}
.top-info-container {
background: linear-gradient(to bottom, rgb(42, 40, 41) 7%, rgb(93, 95, 91) 30%);
border: 1px solid rgb(233, 49, 49);
display: flex;
flex-direction: column;
height: 630px;
width: 350px;
border-radius: 20px;
}
.top-info-container img {
max-height: 140px;
max-width: 140px;
/* object-fit: cover; */
}
.info-container {
background-color: rgb(42, 40, 41);
width: 350px;
z-index: 50;
border-radius: 20px;
height: 277px;
margin-top: -380px;
margin-left: 3px;
position: relative;
top: 100px;
}
.number-margin {
margin: 8px;
}
.bigTypesMargin {
margin-top: -265px;
text-align: center;
}
.bigImageHover img {
max-height: 140px;
max-width: 140px;
object-fit: cover;
margin-top: 30px;
transition: transform 0.5s;
cursor: pointer;
}
.bigImageHover img:hover {
transform: scale(1.5);
filter: drop-shadow(0 0 0.75rem rgb(255, 217, 0));
}
.chartPositioning {
position: relative;
top: 38px;
}
@media (max-width: 390px) {
.top-info-container {
height: 630px;
width: 280px;
height: 550px;
}
.info-container {
width: 280px;
margin-top: -360px;
height: 257px;
}
}
/* left right buttons */
.left-right-click {
/* background-color: red; */
padding: 8px;
cursor: pointer;
z-index: 9999;
}
.responseButtons {
display: flex;
gap: 32px;
}
@media (min-width: 700px) {
#showLeft {
display: none;
}
}
@media (max-width: 701px) {
#hideLeft {
display: none;
}
#bigPokedexBg {
flex-direction: column;
}
}