diff --git a/webapp/src/scss/index.scss b/webapp/src/scss/index.scss
index e47cfda..286271d 100644
--- a/webapp/src/scss/index.scss
+++ b/webapp/src/scss/index.scss
@@ -1,14 +1,41 @@
@import "normalize-scss/sass/normalize/import-now";
-// @import "normalize-scss/sass/_normalize";
-// @include normalize();
-
-/** COLORS **/
-$backgroundColor: #fcfcfc;
-
body {
font-family: "Roboto";
- background-color: $backgroundColor;
+ padding-top: 20px;
+ background-color: #1e1e1e;
+ display: block;
+}
+
+.channel {
+ margin: auto;
+ width: 20%;
+ word-wrap: break-word;
+ font-size: 20px;
+ color: #cb1919;
+ font-weight: bold;
+ box-shadow: 3px 0 0 0 white, 0 3px 0 0 white, 3px 3px 0 0 white, 3px 0 0 0 white inset, 0 3px 0 0 white inset;
+ display: block;
+ overflow: hidden;
+ text-align: center;
+ border-collapse: collapse;
+}
+
+.subchannel {
+ text-align: left;
+ width: 100%;
+ box-shadow: 1px 0 0 0 white, 0 1px 0 0 white, 1px 1px 0 0 white, 1px 0 0 0 white inset, 0 1px 0 0 white inset;
+ color: #cb1919;
+ margin: 0;
+ padding: 0;
+ border-collapse: collapse;
+ box-sizing: content-box;
+}
+
+.client {
+ display: block;
+ padding-left: 15px;
+ color: #a01919;
}
// @import "animations";
diff --git a/webapp/src/views/index.hbs b/webapp/src/views/index.hbs
index f67a229..4cca9cb 100644
--- a/webapp/src/views/index.hbs
+++ b/webapp/src/views/index.hbs
@@ -1,12 +1,16 @@
{{#each channels}}
- {{this.name}}
- {{#each this.clients}}
- {{this.name}}
- {{/each}}
- {{#each this.children}}
- {{this.name}}
+