I am using this Info window with chart ESRI tutorial.
And I would like to customize the dojox pie chart for smaller screens:
@media only screen
and (max-device-width: 320px) {
...
}
Is it possible to use custom dojox chart sizes for custom screen sizes ?
For example the pie chart to be {width: 60px; height: 60px} only when loading on a screen with max-device-width: 320px ?

Yes, It is possible.
However I am afraid that you can not achieve this only by CSS, Because the size of chart depends on various factors. like
chart radius,map infoWindow size,container sizeetc.Solution- You can change above values based on the screen size dynamically, you can use
window resize eventfor it.. this is how you can achieve this.Below is the working code-
Hoping this will help you :)