/**
 * Copyright (c) Matthieu Jabbour. All Rights Reserved.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 *
 */

/**
 * Convenient generic rules.
 */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;

  &:focus {
    outline: none;
  }
}

ul {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: inherit;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body > * {
  flex: none;
}

button {
  border: none;
  background: none;
  &::-moz-focus-inner {
    padding: 0;
    border: none;
  }
}

input {
  border: none;
}
