Grow and shrink the screen
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="400" height="400"> <g> <title>Simple SVG + mediaqueries <defs> <style> @media screen and (max-width: 100px) { #circle { fill: #bada55;} } </style> </defs> <circle cx="200" cy="200" r="150" id="circle" /> </g> </svg>