Advertisement
xandeadx

Untitled

Jun 16th, 2015
325
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. LESS:
  2. -----
  3. @width: 960px;
  4. @media all and (max-width: 768px) {
  5. @width: 760px;
  6. }
  7. body {
  8. width: @width;
  9. }
  10.  
  11.  
  12. CSS:
  13. ----
  14. body {
  15. width: 960px;
  16. }
  17. @media all and (max-width: 768px) {
  18. body {
  19. width: 760px;
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement