summaryrefslogtreecommitdiff
path: root/widgets/ccmenu/ccmenu.scss
diff options
context:
space:
mode:
Diffstat (limited to 'widgets/ccmenu/ccmenu.scss')
-rw-r--r--widgets/ccmenu/ccmenu.scss44
1 files changed, 44 insertions, 0 deletions
diff --git a/widgets/ccmenu/ccmenu.scss b/widgets/ccmenu/ccmenu.scss
new file mode 100644
index 0000000..fe3d3a3
--- /dev/null
+++ b/widgets/ccmenu/ccmenu.scss
@@ -0,0 +1,44 @@
+// ----------------------------------------------------------------------------
+// Sass declarations
+// ----------------------------------------------------------------------------
+$title-color: rgba(255, 255, 255, 0.7);
+$green-color: #50BA5B;
+$red-color: #D93C38;
+$orange-color: #F6A41C;
+
+// ----------------------------------------------------------------------------
+// Widget-ccmenu styles
+// ----------------------------------------------------------------------------
+.widget-ccmenu {
+ vertical-align: top;
+
+ .title {
+ color: $title-color;
+ }
+
+ .title-link {
+ font-size: 30px;
+
+ &:hover {
+ color: rgba(255, 255, 255, 0.7);
+ }
+ }
+
+ li {
+ margin-bottom: 5px;
+ }
+ .updated-at {
+ color: rgba(0, 0, 0, 0.3);
+ }
+}
+
+.status-green {
+ background-color: $green-color;
+}
+.status-red {
+ background-color: $red-color;
+}
+
+.status-orange {
+ background-color: $orange-color;
+}