diff options
author | Kegan Dougal <kegan@matrix.org> | 2014-08-20 16:45:59 +0100 |
---|---|---|
committer | Kegan Dougal <kegan@matrix.org> | 2014-08-20 16:45:59 +0100 |
commit | 5048f4a915625ada6c98b9e574edaa9455e9442d (patch) | |
tree | 815f5efed42d2e49bb7012100414a45a6069627a /jsfiddles/example_app/demo.css | |
parent | Added more jsfiddles. (diff) | |
download | synapse-5048f4a915625ada6c98b9e574edaa9455e9442d.tar.xz |
Added final jsfiddle: an example app demonstrating most of the c2s api.
Diffstat (limited to 'jsfiddles/example_app/demo.css')
-rw-r--r-- | jsfiddles/example_app/demo.css | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/jsfiddles/example_app/demo.css b/jsfiddles/example_app/demo.css new file mode 100644 index 0000000000..4c1e157cc8 --- /dev/null +++ b/jsfiddles/example_app/demo.css @@ -0,0 +1,43 @@ +.roomListDashboard, .roomContents, .sendMessageForm { + visibility: hidden; +} + +.roomList { + background-color: #909090; +} + +.messageWrapper { + background-color: #EEEEEE; + height: 400px; + overflow: scroll; +} + +.membersWrapper { + background-color: #EEEEEE; + height: 200px; + width: 50%; + overflow: scroll; +} + +.textEntry { + width: 100% +} + +p { + font-family: monospace; +} + +table +{ + border-spacing:5px; +} + +th,td +{ + padding:5px; +} + +.roomList tr:not(:first-child):hover { + background-color: orange; + cursor: pointer; +} |