2017-10-19 06:01:54 +02:00
|
|
|
/*
|
|
|
|
|
** nativize.css
|
|
|
|
|
** Makes the UI feel more native
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
html {
|
|
|
|
|
font-family: sans-serif;
|
|
|
|
|
-webkit-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 */
|
|
|
|
|
|
2019-05-16 18:03:31 +02:00
|
|
|
/*.is-selectable,*/
|
|
|
|
|
|
2017-10-19 06:01:54 +02:00
|
|
|
pre,
|
|
|
|
|
code {
|
|
|
|
|
-webkit-user-select: auto;
|
2019-05-16 18:03:31 +02:00
|
|
|
user-select: text;
|
2017-10-19 06:01:54 +02:00
|
|
|
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 */
|
|
|
|
|
}
|