about summary refs log tree commit diff stats
path: root/app/assets
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2017-09-25 00:05:38 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2017-09-25 00:05:38 -0400
commita65972d34188d14dca10193950732d506d931e8c (patch)
tree2212ac8682f97f07751370a898ad651af8b64a5b /app/assets
parentb0dee0af0a4235eb9756532e807db5c8b701ce45 (diff)
downloadpokeviewer-a65972d34188d14dca10193950732d506d931e8c.tar.gz
pokeviewer-a65972d34188d14dca10193950732d506d931e8c.tar.bz2
pokeviewer-a65972d34188d14dca10193950732d506d931e8c.zip
Added met location data
Note that the met location for Pokémon from Orre is completely
incorrect.
Diffstat (limited to 'app/assets')
-rw-r--r--app/assets/stylesheets/pokeviewer/pokemon.css.scss50
1 files changed, 43 insertions, 7 deletions
diff --git a/app/assets/stylesheets/pokeviewer/pokemon.css.scss b/app/assets/stylesheets/pokeviewer/pokemon.css.scss index 332cb18..83fac45 100644 --- a/app/assets/stylesheets/pokeviewer/pokemon.css.scss +++ b/app/assets/stylesheets/pokeviewer/pokemon.css.scss
@@ -141,6 +141,9 @@
141 font-family: 'Power Green'; 141 font-family: 'Power Green';
142 display: flex; 142 display: flex;
143 margin: 1em; 143 margin: 1em;
144 border: 1px solid #777;
145 border-radius: 5px;
146 background-color: #fafafa;
144 147
145 .male { 148 .male {
146 color: blue; 149 color: blue;
@@ -155,16 +158,49 @@
155 white-space: pre; 158 white-space: pre;
156 } 159 }
157 160
158 .pokemon-ivs { 161 .pd-details {
159 margin: 0 1em; 162 color: white;
163 font-size: bold;
164 padding: .25em .5em;
165 }
166
167 .pd-contents {
168 p {
169 margin: .25em;
170 }
171 }
172
173 .pokemon-basics {
174 margin: .5em;
175 }
176
177 .pokemon-memo {
178 border-left: 1px solid #aaa;
179 background-color: #e7e8ff;
180
181 .pd-details {
182 background-color: #2068e0;
183 }
184 }
160 185
161 th { 186 .pokemon-stats {
162 text-align: center; 187 border-left: 1px solid #aaa;
163 padding-right: .5em; 188
189 .pd-details {
190 background-color: #d078f8;
164 } 191 }
165 192
166 td { 193 table {
167 text-align: right; 194 margin: 0 1em;
195
196 th {
197 text-align: center;
198 padding-right: .5em;
199 }
200
201 td {
202 text-align: right;
203 }
168 } 204 }
169 } 205 }
170} 206}