SIFTools/web_app/css/sif-tools.css
Donald Burr 84d80ef4db Fix text fields so they don't look so dorky
Now using <input type="number" pattern="\d*" step="1"> so that
the text field will pop up the numeric keyboard on both iOS and
Android. However this makes the "size=<blah>" no longer function.
So we set a fixed size for all <input type="number"> text fields
using CSS. Kinda hackish, but it works.
2015-10-17 22:54:12 -07:00

27 lines
No EOL
314 B
CSS

body {
font: 100% "Trebuchet MS", sans-serif;
margin: 50px;
background-color: #000000;
color: #ffffff;
}
body {
font-family: Verdana,Arial,sans-serif;
font-size: 14px;
}
p {
margin: 1em 0;
}
strong {
font-weight: 900;
}
table {
table-layout: fixed;
}
input[type=number]{
width: 80px;
}