Skip to content

Instantly share code, notes, and snippets.

View 007matias's full-sized avatar

MatíasB07 007matias

View GitHub Profile
@007matias
007matias / animations.css
Created March 21, 2022 01:30 — 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;}
@007matias
007matias / pokemon-options-picture.css
Created March 21, 2022 01:30 — 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;