-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlanding.css
173 lines (170 loc) · 3.33 KB
/
landing.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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #3b5da7;
padding: 1rem;
font-family: "Bangers";
letter-spacing: 0.1rem;
}
.pokedex {
width: 100%;
display: flex;
justify-content: center;
margin-top: 1rem;
margin-bottom: 1rem;
}
.pokedex__container {
display: flex;
flex-flow: column nowrap;
justify-content: center;
align-self: center;
width: 75%;
min-width: 17rem;
max-width: 40rem;
min-height: -moz-fit-content;
min-height: fit-content;
height: 90%;
max-height: 60rem;
background-color: #dc0a2d;
border-radius: 24px;
border: 5px solid darkred;
}
.pokedex__top {
width: 100%;
display: flex;
flex-flow: row nowrap;
justify-content: flex-start;
align-items: center;
padding: 0.5rem;
gap: 0.2rem;
border-bottom: 8px solid darkred;
margin-bottom: 1rem;
}
.pokedex__bluecircle {
height: 3rem;
width: 3rem;
border-radius: 50%;
background-color: #0040cb;
border: 2px solid silver;
margin-right: 1rem;
}
.pokedex__bluecircle--highlight {
float: left;
position: relative;
right: 3.5rem;
bottom: 0.5rem;
background-color: #85acff;
border-color: white;
border: 2px;
border-radius: 50%;
height: 0.75rem;
width: 0.75rem;
}
.pokedex__smallcircle, .pokedex__smallcircle--green, .pokedex__smallcircle--yellow, .pokedex__smallcircle--red {
height: 1rem;
width: 1rem;
border-radius: 50%;
border: 2px solid silver;
}
.pokedex__smallcircle--red {
background-color: #af1111;
}
.pokedex__smallcircle--yellow {
background-color: yellow;
}
.pokedex__smallcircle--green {
background-color: green;
}
.pokedex__main {
height: 50vh;
display: flex;
flex-flow: column nowrap;
justify-content: flex-start;
padding-top: 0.5rem;
}
.pokedex__screen-border {
background-color: #dedede;
align-self: center;
height: 75%;
width: 80%;
border-radius: 12px;
border: 5px solid #eaeaea;
margin-bottom: 1rem;
}
.pokedex__screen {
width: 100%;
height: 100%;
}
.pokedex__image--cover {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 5px;
}
.pokedex__image {
width: 100%;
height: 100%;
-o-object-fit: contain;
object-fit: contain;
padding: 1rem;
border-radius: 5px;
image-rendering: pixelated;
}
.pokedex__gamepad {
display: flex;
flex-flow: column wrap;
align-items: center;
width: 100%;
height: 15%;
margin-bottom: 1rem;
}
.pokedex__button {
background-color: rgb(255, 225, 0);
width: 80%;
height: 100%;
padding: 0.5rem;
font-size: 2rem;
text-align: center;
color: black;
text-transform: capitalize;
border-radius: 6px;
border: 2px solid #ffd332;
font-family: "Bangers";
letter-spacing: 0.1rem;
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.pokedex__button:active {
position: relative;
top: 0.1rem;
}
.poke-info__bubble {
display: flex;
flex-flow: column nowrap;
justify-content: flex-start;
align-items: center;
background-color: #f7f7f7;
width: 75%;
min-width: 17rem;
max-width: 40rem;
height: -moz-fit-content;
height: fit-content;
margin: 0 auto;
margin-top: 1rem;
border-radius: 12px;
}
.poke-info__name {
font-size: 2.5rem;
text-align: center;
letter-spacing: 0.3rem;
margin-bottom: 0.5rem;
padding: 0.5rem;
}
.poke-info__type {
text-align: center;
font-size: 1.5rem;
padding: 0.5rem;
}/*# sourceMappingURL=landing.css.map */