/*
** nativize.css
** Makes the UI feel more native
*/

html {
  font-family: sans-serif;
  user-select: none; /* disable selection */
  -webkit-user-drag: none; /* disable dragging */
  cursor: default; /* use default cursor */
}

body {
  margin: 0; /* remove default margin */
}


/* enable text selection */

.is-selectable,
pre,
code {
  user-select: text;
  cursor: auto;
}


/* Buttons and links */

button{
  cursor: default;
}

/* Internal links */
a {
  cursor: pointer;
  text-decoration: none;
  border-bottom: 1px dashed;
  outline: none;
}

/* New window (target) + external links */
a[target],
a[href^="https://"],
a[href^="http://"] {
  border-bottom: 1px solid;
}

a:hover,
a:focus {
  border-bottom: none;
}


/* Images */

img {
  -webkit-user-drag: none; /* disable dragging */
}
