mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-04 09:39:23 +00:00
17 lines
603 B
CSS
17 lines
603 B
CSS
|
|
#PetEggs {
|
||
|
|
/* egg sprite size */
|
||
|
|
width: 48px;
|
||
|
|
height: 51px;
|
||
|
|
/* link to sprite sheet image */
|
||
|
|
background-image: url(Egg_Sprite_Sheet.png);
|
||
|
|
}
|
||
|
|
/* defines where in the sheet the eggs are */
|
||
|
|
.WolfEgg{background-position: 0px 0px;}
|
||
|
|
.TigerEgg{background-position: 0px -51px;}
|
||
|
|
.PolarBearEgg{background-position: 0px -102px;}
|
||
|
|
.PandaEgg{background-position: 0px -153px;}
|
||
|
|
.LionEgg{background-position: 0px -204px;}
|
||
|
|
.FlyingPigEgg{background-position: 0px -255px;}
|
||
|
|
.DrakeEgg{background-position: 0px -306px;}
|
||
|
|
.CactusEgg{background-position: 0px -357px;}
|
||
|
|
.BearEgg{background-position: 0px -408px;}
|