NEC framework specification template media, nectemplate
<! DOCTYPE html>
<Html>
<Head>
<Meta charset = "UTF-8"/>
<Title> NEC: A Better CSS solution </title>
<Meta name = "keywords" content = ""/>
<Meta name = "description" content = ""/>
<Meta name = "viewport" content = "width = device-width"/>
<Link rel = "stylesheet" href = "css/style.css"/>
<Link rel = "shortcut icon" href = "img/favicon. ico"/>
<Link rel = "apple-touch-icon" href = "img/touchicon.png"/>
</Head>
<Body>
<Div class = "g-doc">
<Div class = "g-hd">
</Div>
<Div class = "g-bd">
<Div class = "g-mn">
</Div>
<Div class = "g-sd">
</Div>
</Div>
<Div class = "g-ft">
</Div>
</Div>
</Body>
</Html>
/* Media */
/* Landscape screen */
@ Media screen and (orientation: landscape ){
}
/* Portrait screen */
@ Media screen and (orientation: portrait ){
}
/* Window width <960, design width = 768 */
@ Media screen and (max-width: 959px ){
}
/* Window width <768, design width = 640 */
@ Media screen and (max-width: 767px ){
}
/* Window width <640, design width = 480 */
@ Media screen and (max-width: 639px ){
}
/* Window width <480, design width = 320 */
@ Media screen and (max-width: 479px ){
}
/* Install windows UI */
@ Media screen and (-ms-view-state: snapped ){
}
/* Print */
@ Media print {
}