directives.less 354 B

12345678910111213141516171819202122232425262728
  1. @hello: "utf-8";
  2. @charset @hello;
  3. @-moz-document url-prefix(){
  4. div {
  5. color: red;
  6. }
  7. }
  8. @page :left { margin-left: 4cm; }
  9. @page :right { margin-left: 3cm; }
  10. @page { margin: 2cm }
  11. @-ms-viewport {
  12. width: device-width;
  13. }
  14. @-moz-viewport {
  15. width: device-width;
  16. }
  17. @-o-viewport {
  18. width: device-width;
  19. }
  20. @viewport {
  21. width: device-width;
  22. }