Files
deb-python-lesscpy/lesscpy/test/css/media.css
2012-01-28 14:52:09 +00:00

22 lines
234 B
CSS

@media print {
.class {
color: blue;
}
.class .sub {
width: 42;
}
.top, header > h1 {
color: #444444;
}
}
@media screen {
body {
max-width: 480;
}
}
@media all and (orientation:portrait) {
aside {
float: none;
}
}