layout.css 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*
  2. * Skeleton V1.2
  3. * Copyright 2011, Dave Gamache
  4. * www.getskeleton.com
  5. * Free to use under the MIT license.
  6. * http://www.opensource.org/licenses/mit-license.php
  7. * 6/20/2012
  8. */
  9. /* Table of Content
  10. ==================================================
  11. #Site Styles
  12. #Page Styles
  13. #Media Queries
  14. #Font-Face */
  15. /* #Site Styles
  16. ================================================== */
  17. /* #Page Styles
  18. ================================================== */
  19. /* #Media Queries
  20. ================================================== */
  21. /* Smaller than standard 960 (devices and browsers) */
  22. @media only screen and (max-width: 959px) {}
  23. /* Tablet Portrait size to standard 960 (devices and browsers) */
  24. @media only screen and (min-width: 768px) and (max-width: 959px) {}
  25. /* All Mobile Sizes (devices and browser) */
  26. @media only screen and (max-width: 767px) {}
  27. /* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
  28. @media only screen and (min-width: 480px) and (max-width: 767px) {}
  29. /* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
  30. @media only screen and (max-width: 479px) {}
  31. /* #Font-Face
  32. ================================================== */
  33. /* This is the proper syntax for an @font-face file
  34. Just create a "fonts" folder at the root,
  35. copy your FontName into code below and remove
  36. comment brackets */
  37. /* @font-face {
  38. font-family: 'FontName';
  39. src: url('../fonts/FontName.eot');
  40. src: url('../fonts/FontName.eot?iefix') format('eot'),
  41. url('../fonts/FontName.woff') format('woff'),
  42. url('../fonts/FontName.ttf') format('truetype'),
  43. url('../fonts/FontName.svg#webfontZam02nTh') format('svg');
  44. font-weight: normal;
  45. font-style: normal; }
  46. */