Files
deb-python-lesscpy/lesscpy/test/less/media.less
2012-06-25 08:58:13 +00:00

45 lines
618 B
Plaintext

/*
CSS media groups
*/
@media screen, projection {
html {
background: #fffef0;
color: #300;
}
body {
max-width: 35em;
margin: 0 auto;
}
}
/*
Variables
*/
@media print {
@var: 42;
.class {
color: blue;
.sub {
width: @var;
}
}
.top, header > h1 {
color: #222 * 2;
}
}
@media screen {
@base: 8;
body { max-width: @base * 60; }
}
/*
pseudo
*/
@media all and (orientation:portrait) {
aside { float: none; }
}
/*
*/
@media (min-width: 768px) and (max-width: 979px) {
.hidden-desktop { display: none !important; }
}