summaryrefslogtreecommitdiff
path: root/deck.js/extensions/automatic/deck.automatic.css
diff options
context:
space:
mode:
authorChristian Franke <nobody@nowhere.ws>2013-04-09 14:49:43 +0200
committerChristian Franke <nobody@nowhere.ws>2013-04-09 14:49:43 +0200
commit7ccd2b9d1b3ee8bdd9557f9209eb222ed68d4927 (patch)
tree84796c055b8a2aa1203dfaf4f1c775097a1c9625 /deck.js/extensions/automatic/deck.automatic.css
parent5a774ef6f3b38b19b26913a34b1388530c72334e (diff)
add automatic extension
Diffstat (limited to 'deck.js/extensions/automatic/deck.automatic.css')
-rw-r--r--deck.js/extensions/automatic/deck.automatic.css40
1 files changed, 40 insertions, 0 deletions
diff --git a/deck.js/extensions/automatic/deck.automatic.css b/deck.js/extensions/automatic/deck.automatic.css
new file mode 100644
index 0000000..8977540
--- /dev/null
+++ b/deck.js/extensions/automatic/deck.automatic.css
@@ -0,0 +1,40 @@
+.deck-container .deck-automatic-link {
+ position:absolute;
+ z-index:3;
+ bottom: 0;
+ left:49%;
+ margin-top:-16px;
+ font-size:20px;
+ font-weight:bold;
+ line-height:32px;
+ vertical-align:middle;
+ text-align:center;
+ text-decoration:none;
+ cursor: pointer;
+}
+
+.deck-container .deck-automatic-link.deck-automatic-running {
+ color: green;
+}
+
+.deck-container .deck-automatic-link.deck-automatic-stopped {
+ color: red;
+}
+
+.borderradius .deck-container .deck-automatic-link {
+ border-radius(10px);
+}
+
+.deck-container .deck-automatic-link:hover {
+ background-color: lightgrey;
+}
+
+.deck-container .deck-automatic-link:active {
+ background-color: grey;
+}
+
+@media print {
+ .deck-automatic-link {
+ display:none !important;
+ }
+} \ No newline at end of file