I would like to ask how i going to insert stylesheet style with media query by using jss.js. Currently i am using code below to insert style with class, but i wonder how to insert style with class with media query ?
jss.set('.demo', {
'font-size': '15px',
'color': 'red'.
'background' : '#000'
});
The Jss plugin https://github.com/Box9/jss
Js fiddle link example http://jsfiddle.net/L8wvuonq/1/
I would appreciate if anyone can help. I really need to insert style with media query by using stylesheet or others way which can insert and retrieve style rules so that i can compile together.
Thanks.