
/*
	How to control the size of buttons in the cart. 
	Set PV#56 in the vars.dat file with this tag:
	<link rel="stylesheet" href="https://www.YourName.com/cart_style.css"> 
	Upload this file to your website's public_html folder.
*/


/* Default settings for Desktop devices */

input[type=submit] {
   border: 1px solid blue;
   font-size: 1.5vmax;
}

/* Anything inside @media will change for devices with screen widths less than 600 pixels wide (phones). */

@media only screen and (max-width: 600px) {
	input[type=submit] {
	   border: 1px solid blue;
	   font-size: 3.1vmax; /* Notice the font size is larger here. */
	}
}


