// 重置
:root {
  --color-selection: #4789b4;
}

*,
*::before,
*::after {
  -webkit-tap-highlight-color: transparent;

  // noinspection CssUnknownProperty
  tap-highlight-color: transparent; /* stylelint-disable-line */
}

::selection {
  background-color: transparent;
}

button,
input,
select,
textarea {
  background: none no-repeat;
  border: none;

  &:hover,
  &:focus {
    border: none;
    outline: none;
  }

  // IE下输入框默认样式清楚
  &::-ms-clear,
  &::-ms-reveal,
  &::-ms-expand {
    display: none;
  }

  // 选中背景
  &::selection {
    color: white;
    background: var(--color-selection);
  }
}

html {
  overflow: hidden;
  background: linear-gradient(-45deg, #081522, #000810);
}

body {
  font-size: 16px;
  color: #fff;
}

html,
body {
  height: 100%;
}
