After researching the issue, I discovered several solutions involving css3 transition techniques.
Currently, I have been using {zoom:1.5}
for all of my buttons. However, this method does not work on Firefox.
When attempting to implement the transition property with the following code:
-moz-transform: scale(1.5); /* Firefox */
-moz-transform-origin: 0 0;
I encountered a problem where all of my buttons ended up overlapping, as demonstrated by the ok and cancel buttons.
Does anyone know of an alternative solution for this issue? Any assistance would be greatly appreciated.