You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

18 lines
536 B

  1. @charset "UTF-8";
  2. /*------------------------------------*\
  3. $RESET
  4. \*------------------------------------*/
  5. /* Border-Box http:/paulirish.com/2012/box-sizing-border-box-ftw/ */
  6. * {
  7. -moz-box-sizing: border-box;
  8. -webkit-box-sizing: border-box;
  9. box-sizing: border-box;
  10. }
  11. html, body, div, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, ol, ul, li, form, legend, label, table, header, footer, nav, section, figure {
  12. margin: 0;
  13. padding: 0;
  14. }
  15. header, footer, nav, section, article, hgroup, figure {
  16. display: block;
  17. }