summaryrefslogtreecommitdiff
path: root/templates/project/widgets/text/text.scss
diff options
context:
space:
mode:
authorDaniel Beauchamp <daniel.beauchamp@shopify.com>2012-08-02 13:38:19 -0400
committerDaniel Beauchamp <daniel.beauchamp@shopify.com>2012-08-02 13:38:19 -0400
commitcdd8ff258582f5eba7e3941a5a18007e7aabbbfa (patch)
tree259644bbbda24070efc5685445e6b26187a70b20 /templates/project/widgets/text/text.scss
parent1dcf732b801f9fa513901fda27388a36eddb44ab (diff)
Better generators, sample widgets, and more!
Diffstat (limited to 'templates/project/widgets/text/text.scss')
-rw-r--r--templates/project/widgets/text/text.scss25
1 files changed, 25 insertions, 0 deletions
diff --git a/templates/project/widgets/text/text.scss b/templates/project/widgets/text/text.scss
new file mode 100644
index 0000000..591c32e
--- /dev/null
+++ b/templates/project/widgets/text/text.scss
@@ -0,0 +1,25 @@
+// ----------------------------------------------------------------------------
+// Sass declarations
+// ----------------------------------------------------------------------------
+$widget-text_background-color: #ec663c;
+$widget-text_value-color: #fff;
+
+$widget-text_title-color: lighten($widget-text_background-color, 30%);
+$widget-text_moreinfo-color: lighten($widget-text_background-color, 30%);
+
+// ----------------------------------------------------------------------------
+// Widget-text styles
+// ----------------------------------------------------------------------------
+.widget-text {
+
+ background-color: $widget-text_background-color;
+
+ .title {
+ color: $widget-text_title-color;
+ }
+
+ .text-moreinfo {
+ color: $widget-text_moreinfo-color;
+ }
+
+} \ No newline at end of file