Skip to content

Instantly share code, notes, and snippets.

View PanboHM's full-sized avatar

Jesús Hernández Mateos PanboHM

  • Plexus
  • Mérida
View GitHub Profile
@PanboHM
PanboHM / pokemon-options-picture.css
Created April 6, 2022 11:57 — forked from Klerith/pokemon-options-picture.css
PokemonPicture y PokemonOptions CSS
/* Pokemon Picture */
.pokemon-container {
height: 200px;
}
img {
height: 200px;
position: absolute;
right: 32%;
user-select: none;
-moz-user-select: none;
@PanboHM
PanboHM / animations.css
Created April 5, 2022 20:14 — forked from Klerith/animations.css
Pokémon Game CSS
.fade-in {
animation: fadeIn 0.3s;
-webkit-animation: fadeIn 0.3s;
-moz-animation: fadeIn 0.3s;
-o-animation: fadeIn 0.3s;
-ms-animation: fadeIn 0.3s;
}
@keyframes fadeIn {
0% {opacity:0;}
100% {opacity:1;}