Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature currently requires accessing the site using the built-in Safari browser.
input
{
background:#fff;
border:1px solid #000;
color:#000;
font-weight:bold;
}
textarea
{
background:#fff;
border:1px solid #000;
font-family:Arial, Helvetica, Sans-Serif;
color:#000;
font-weight:bold;
}
//
// Fix Mozilla/Firefox Bug
// input:file
//
MS_set_input_size = function(id, inputsize) {
if(document.getElementById(id) != null) {
document.getElementById(id).size = inputsize;
}
};
window.onload = function() {
MS_set_input_size("input_file_id", 63);
};