diff --git a/generate.py b/generate.py index 7a3f0ff..9c7c01b 100644 --- a/generate.py +++ b/generate.py @@ -140,6 +140,10 @@ def rjs2(f, z): if type(f[2]) == list: for l in f[2]: result.append(rjs2(l, z + f[1])) + elif f[2] == 0: + #result.append("document.getElementById(z + '"+ f[1] +"' + 'i').value = ''") + # replaced with the onBlur thing + pass return "\n".join(result) def rhtml(f, z): @@ -165,7 +169,7 @@ def rhtml(f, z): def rsearch(f, z): result = [] result.append(''.join(["") return "\n".join(result) diff --git a/style.css b/style.css index 20f49d4..3093941 100644 --- a/style.css +++ b/style.css @@ -35,3 +35,14 @@ a:hover { padding: 5px; text-align: right; } + +input { + font-size: 1.5em; + appearance: none; + border: solid 1px #ddd; + padding: 10px; + margin-top: 100px; /* dirty hack, can be removed */ + text-align: center; + box-shadow: 0 0 10px 1px #27454F; + border: solid 4px #27454F; +}