summaryrefslogtreecommitdiff
path: root/deck.js/extensions/automatic/deck.automatic.css
blob: 8977540079ab426f5311d0144bb1209bc38aae46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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;
	}
}