diff options
Diffstat (limited to 'app/assets/stylesheets')
-rw-r--r-- | app/assets/stylesheets/pokeviewer/pokemon.css.scss | 46 |
1 files changed, 30 insertions, 16 deletions
diff --git a/app/assets/stylesheets/pokeviewer/pokemon.css.scss b/app/assets/stylesheets/pokeviewer/pokemon.css.scss index 2a75730..f44b499 100644 --- a/app/assets/stylesheets/pokeviewer/pokemon.css.scss +++ b/app/assets/stylesheets/pokeviewer/pokemon.css.scss | |||
@@ -152,21 +152,19 @@ body { | |||
152 | } | 152 | } |
153 | } | 153 | } |
154 | 154 | ||
155 | .pc-pokemon { | 155 | .pkv-hover { |
156 | .pc-data { | 156 | display: none; |
157 | display: none; | 157 | background-color: #111; |
158 | background-color: #111; | 158 | color: #fff; |
159 | color: #fff; | 159 | z-index: 1; |
160 | z-index: 1; | 160 | padding: .5em; |
161 | padding: .5em; | 161 | box-shadow: 0px 0px 2px 1px #B3B3B3; |
162 | box-shadow: 0px 0px 2px 1px #B3B3B3; | 162 | border-radius: 4px; |
163 | border-radius: 4px; | 163 | position: absolute; |
164 | position: absolute; | 164 | |
165 | 165 | .pc-data-name { | |
166 | .pc-data-name { | 166 | font-weight: bold; |
167 | font-weight: bold; | 167 | white-space: pre; |
168 | white-space: pre; | ||
169 | } | ||
170 | } | 168 | } |
171 | } | 169 | } |
172 | 170 | ||
@@ -203,7 +201,6 @@ body { | |||
203 | 201 | ||
204 | .pd-details { | 202 | .pd-details { |
205 | color: white; | 203 | color: white; |
206 | font-size: bold; | ||
207 | padding: .25em .5em; | 204 | padding: .25em .5em; |
208 | } | 205 | } |
209 | 206 | ||
@@ -355,4 +352,21 @@ body { | |||
355 | stroke-linejoin: butt; | 352 | stroke-linejoin: butt; |
356 | } | 353 | } |
357 | } | 354 | } |
355 | |||
356 | .pokemon-ribbons { | ||
357 | .pd-details { | ||
358 | background-color: #ffc8c8; | ||
359 | } | ||
360 | |||
361 | ul { | ||
362 | display: flex; | ||
363 | flex-wrap: wrap; | ||
364 | padding: 0; | ||
365 | margin: 0.5em; | ||
366 | |||
367 | li { | ||
368 | display: block; | ||
369 | } | ||
370 | } | ||
371 | } | ||
358 | } | 372 | } |