Created
August 10, 2019 13:43
-
-
Save EliW/71c9ce50815924a77565c904daff9b6c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Adjust bases to be full-size */ | |
html body .pawn-container.large1 .base, | |
html body .pawn-container.large2 .base { | |
height: 1.9in; | |
} | |
html body .pawn-container.medium .base, | |
html body .pawn-container.small .base { | |
height: .95in; | |
} | |
/* Adjust pawn heights */ | |
html body .pawn-container.large2 .pawn { | |
height: 3in; | |
} | |
html body .pawn-container.large1 .pawn { | |
height: 2in; | |
} | |
html body .pawn-container.medium .pawn { | |
height: 1.5in; | |
} | |
html body .pawn-container.small .pawn { | |
height: 1in; | |
} | |
/* Completely change the 'tiny' */ | |
html body .pawn-container.tiny .base { | |
height: .7in; | |
width: .75in; | |
} | |
html body .pawn-container.tiny .pawn { | |
height: .7in; | |
width: .75in; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment