I have simple HTML5 game and I would like to set different CSS values for selectors if the game is running on iPad.
For example:
Normal value for all devices (without iPad):
#playIcon {
    position: absolute;
    color: white;
    z-index: 10;
    top: 15vw;
    left: 33%;
}
and for iPad device should be value:
top: 20vw;
How can I do this in simple and effective way?
 
     
     
     
     
    