summaryrefslogtreecommitdiff
path: root/templates/project/widgets/table
diff options
context:
space:
mode:
Diffstat (limited to 'templates/project/widgets/table')
-rw-r--r--templates/project/widgets/table/table.coffee2
-rw-r--r--templates/project/widgets/table/table.html8
-rw-r--r--templates/project/widgets/table/table.scss42
3 files changed, 0 insertions, 52 deletions
diff --git a/templates/project/widgets/table/table.coffee b/templates/project/widgets/table/table.coffee
deleted file mode 100644
index 5735316..0000000
--- a/templates/project/widgets/table/table.coffee
+++ /dev/null
@@ -1,2 +0,0 @@
-class AllTheThings.Table extends AllTheThings.Widget
- source: 'table' \ No newline at end of file
diff --git a/templates/project/widgets/table/table.html b/templates/project/widgets/table/table.html
deleted file mode 100644
index e5aeb99..0000000
--- a/templates/project/widgets/table/table.html
+++ /dev/null
@@ -1,8 +0,0 @@
-<h1 class="title" data-bind="title"></h1>
-
-<table>
- <tr data-foreach-item="items">
- <td class="label" data-bind="item.label"></td>
- <td class="value" data-bind="item.value | shortenedNumber"></td>
- </tr>
-</table> \ No newline at end of file
diff --git a/templates/project/widgets/table/table.scss b/templates/project/widgets/table/table.scss
deleted file mode 100644
index 0d38164..0000000
--- a/templates/project/widgets/table/table.scss
+++ /dev/null
@@ -1,42 +0,0 @@
-// ----------------------------------------------------------------------------
-// Sass declarations
-// ----------------------------------------------------------------------------
-$widget-table_background-color: #82b53d;
-$widget-table_value-color: #fff;
-
-$widget-table_title-color: lighten($widget-table_background-color, 45%);
-$widget-table_label-color: lighten($widget-table_background-color, 45%);
-
-// ----------------------------------------------------------------------------
-// Widget-table styles
-// ----------------------------------------------------------------------------
-.widget-table {
-
- background-color: $widget-table_background-color;
-
- th {
- font-weight: 400;
- font-size: 16px;
- }
-
- td.label {
- vertical-align: middle;
- text-align: left;
- font-size: 23px;
- }
-
- .title {
- color: $widget-table_title-color;
- }
-
- .label {
- color: $widget-table_label-color;
- }
-
- .value {
- font-weight: 700;
- font-size: 54px;
- color: $widget-table_value-color;
- }
-
-} \ No newline at end of file