mirror of
https://github.com/less/less.js.git
synced 2026-01-23 06:07:56 -05:00
22 lines
254 B
CSS
22 lines
254 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;
|
|
}
|
|
}
|