diff options
| author | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2009-11-29 00:27:23 +0100 | 
|---|---|---|
| committer | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2009-11-29 00:27:23 +0100 | 
| commit | 268267c9e45351322ec61800f5b9900d83f40a24 (patch) | |
| tree | e78bae16dcef5d664f78b0749330d73a96472a8c /war/style.css | |
| parent | 55ca2cac7bb7df1c5c0ccd4063729f8659a0b020 (diff) | |
Beginning of a rewrite in Clojure for use on the Google App Engine.
Diffstat (limited to 'war/style.css')
| -rw-r--r-- | war/style.css | 27 | 
1 files changed, 27 insertions, 0 deletions
| diff --git a/war/style.css b/war/style.css new file mode 100644 index 0000000..95c4c5e --- /dev/null +++ b/war/style.css @@ -0,0 +1,27 @@ +body { +  z-index: 0; +} + +div.autocomplete { +  position:absolute; +  width:350px; +  background-color:white; +  border:1px solid #888; +  margin:0; +  padding:0; +  z-index: 100; +} +div.autocomplete ul { +  list-style-type:none; +  margin:0; +  padding:0; +} +div.autocomplete ul li.selected { background-color: #ffb;} +div.autocomplete ul li { +  list-style-type:none; +  display:block; +  margin:0; +  padding:2px; +  height:32px; +  cursor:pointer; +} | 
