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;
+}
|