65 lines
842 B
Plaintext
65 lines
842 B
Plaintext
|
|
/*** Base rules ***/
|
|
* {
|
|
font-size: 100%;
|
|
}
|
|
|
|
body {
|
|
/* Android fixed bullshit */
|
|
-webkit-user-select:none;
|
|
-webkit-touch-callout:none;
|
|
-webkit-tap-highlight-color: rgba(0,0,0,0);
|
|
overflow-y: visible !important;
|
|
/* end of bullshit */
|
|
}
|
|
|
|
html, body {
|
|
height: 100%;
|
|
}
|
|
|
|
img {
|
|
border: none;
|
|
}
|
|
|
|
/*
|
|
TODO: -xy-text-resize-dings
|
|
*/
|
|
|
|
html, body, form, ul {
|
|
/* TODO: Really 0 ? */
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
table {
|
|
border-collapse: collapse;
|
|
border: none;
|
|
}
|
|
|
|
body {
|
|
font-family: Ubuntu, Calibri, Trebuchet MS, Helvetica, sans-serif;
|
|
color: black;
|
|
background-color: white;
|
|
}
|
|
|
|
a {
|
|
color: #333;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
a:hover {
|
|
color: black;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
#fontsize-calc {
|
|
width: 1000em;
|
|
height: 1em;
|
|
font-size: 1em;
|
|
position: absolute;
|
|
top: -2em;
|
|
}
|
|
/*** END of Base rules */
|
|
|
|
|