aboutsummaryrefslogtreecommitdiffstats
path: root/www/css/contrib/led.css
diff options
context:
space:
mode:
authorMarcel Enguehard <mengueha+fdio@cisco.com>2017-07-19 11:26:26 +0200
committerMarcel Enguehard <mengueha+fdio@cisco.com>2017-07-19 11:51:26 +0000
commit3e6678f9c692553e8902da4d6fb1fe6c087db1f4 (patch)
tree580a46ca5de22a044319eabb295ad980d50589ec /www/css/contrib/led.css
parent08c4f765cf29dbd6e9a616c542552417eece14fc (diff)
* GUI resource
* MemIf interface for VPP * Better netmodel integration * Draft documentation * New tutorials * Improved monitoring and error handling * Refactored IP addresses and prefixes representation * Improved image mgmt for LXD * Various bugfixes and code refactoring Change-Id: I90da6cf7b5716bc7deb6bf4e24d3f9f01b5a9b0f Signed-off-by: Marcel Enguehard <mengueha+fdio@cisco.com>
Diffstat (limited to 'www/css/contrib/led.css')
-rw-r--r--www/css/contrib/led.css37
1 files changed, 37 insertions, 0 deletions
diff --git a/www/css/contrib/led.css b/www/css/contrib/led.css
new file mode 100644
index 00000000..07a1e3b9
--- /dev/null
+++ b/www/css/contrib/led.css
@@ -0,0 +1,37 @@
+/* Adapted from http://cssdeck.com/labs/css-leds */
+
+.led-red {
+ /*margin: 20px auto;*/
+ width: 12px;
+ height: 12px;
+ background-color: #940;
+ border-radius: 50%;
+ box-shadow: #000 0 -1px 7px 1px, inset #600 0 -1px 9px, #F00 0 2px 12px;
+}
+
+.led-yellow {
+ /*margin: 20px auto;*/
+ width: 12px;
+ height: 12px;
+ background-color: #A90;
+ border-radius: 50%;
+ box-shadow: #000 0 -1px 7px 1px, inset #660 0 -1px 9px, #DD0 0 2px 12px;
+}
+
+.led-green {
+ /*margin: 20px auto;*/
+ width: 12px;
+ height: 12px;
+ background-color: #690;
+ border-radius: 50%;
+ box-shadow: #000 0 -1px 7px 1px, inset #460 0 -1px 9px, #7D0 0 2px 12px;
+}
+
+.led-blue {
+ /*margin: 20px auto;*/
+ width: 12px;
+ height: 12px;
+ background-color: #4AB;
+ border-radius: 50%;
+ box-shadow: #000 0 -1px 7px 1px, inset #006 0 -1px 9px, #06F 0 2px 14px;
+}