-
Notifications
You must be signed in to change notification settings - Fork 0
/
changeomatic.css
85 lines (85 loc) · 1.79 KB
/
changeomatic.css
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
.changeomatic .photos {overflow:hidden;position:relative;width:100%; background-color:black;}
.changeomatic img {height:auto; max-height: 519px;}
.changeomatic {position: relative;
min-height: 519px;
}
.changeomatic .notice {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 519px;
line-height: 519px;
background-color: black;
color:white;
opacity: 0.8;
text-align: center;
z-index:1000;
}
.changeomatic .next, .changeomatic .prev {
cursor: pointer;
position: absolute;
top: 50%;
margin-top: -0.7em;
font-size: 40pt;
font-family: Verdana;
color:white;
padding:0.5em;
text-decoration:none;
opacity: 0.8;
z-index:1000;
}
.changeomatic .next:hover,
.changeomatic .prev:hover {opacity: 1;}
.changeomatic .next { right: 0px;}
.changeomatic .prev { left: 0px;}
.changeomatic .caption {
position: absolute;
bottom: 0;
left: 0;
color: white;
overflow: hidden;
width: 100%;
z-index: 1000;
}
.changeomatic .caption .cycle-caption {
padding: 1em;
top: 0;
left: 0;
z-index: 1;
position: relative;
}
.changeomatic .caption .bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color:black;
opacity: 0.5;
filter: alpha(opacity=50);
z-index: 0;
}
.cycle-paused:after {
content: 'Paused';
color: white;
background: black; padding: 10px;
z-index: 500;
position: absolute;
top: 20px;
right: 20px;
opacity: .5;
filter: alpha(opacity=50);
}
.cycle-pager {
word-wrap: break-word;
text-align: center;
}
.cycle-pager .item {
background-color: #ccc;
margin-left: 2px;
text-decoration: none;
}
.cycle-pager .item:first-child {margin-left:0;}
.cycle-pager .item:hover { background-color: black; }
.cycle-pager .item.cycle-pager-active { background-color: #666; }