/* stylelint-disable */

/**
 * Additional Reset Rules not targeted by normalize.css
 *
 * @package  generator-mh-boilerplate
 * @author   Martin Herweg <info@martinherweg.de>
 * @author   David Hellmann <davidhellmann.com@gmail.com>
 */

/*
|--------------------------------------------------------------------------
| _generic.reset.scss
|--------------------------------------------------------------------------
*/

// A very simple reset that sits on top of Normalize.css.
body,
h1, h2, h3, h4, h5, h6,
blockquote, p, pre,
dl, dd, ol, ul,
figure,
hr,
fieldset, legend {
  margin:  0;
  padding: 0;
}

// Remove trailing margins from nested lists.
li > {

  ol,
  ul {
    margin-bottom: 0;
  }

}

//  Remove default table spacing.
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* stylelint-enable */