@import "normalize.scss";

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: $font-family;
  font-size: $font-size-small;
  line-height: $line-height-base;
  color: $text-color;
  @include theme-color($__common-body_font-color);
  background-color: $body-background;
  @include theme-background-color($__common-body_background-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
hr,
button,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

ul,
ol {
  list-style: none;
}

input::-ms-clear,
input::-ms-reveal {
  display: none;
}

a {
  color: $link-color;
  @include theme-color($__common-a_font-color);
  background: transparent;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  transition: color $transition-time ease;

  &:hover {
    color: $link-hover-color;
    @include theme-color($__common-a_hover_font-color);
  }

  &:active {
    color: $link-active-color;
    @include theme-color($__common-a_active_font-color);
  }

  &:active,
  &:hover {
    outline: 0;
    text-decoration: none;
  }

  &[disabled] {
    color: #ccc;
    @include theme-color($__common-a_disabled_font-color);
    cursor: $cursor-disabled;
    pointer-events: none;
  }
}

code,
kbd,
pre,
samp {
  font-family: $code-family;
}
